Replace remote GitHub avatars with local assets (#822) #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
branches: | |
- main | |
- next-minor | |
jobs: | |
release: | |
if: github.ref_name == 'main' | |
name: Release | |
uses: primer/.github/.github/workflows/[email protected] | |
secrets: | |
gh_token: ${{ secrets.GPR_AUTH_TOKEN_SHARED }} | |
npm_token: ${{ secrets.NPM_AUTH_TOKEN_SHARED }} | |
release-next-minor: | |
if: github.ref_name == 'next-minor' | |
name: Next minor | |
uses: primer/.github/.github/workflows/[email protected] | |
with: | |
title: Release tracking (next minor) | |
secrets: | |
gh_token: ${{ secrets.GPR_AUTH_TOKEN_SHARED }} | |
npm_token: ${{ secrets.NPM_AUTH_TOKEN_SHARED }} |