chore(deps): update actions/checkout digest to 08eba0b (#974) #1617
This file contains hidden or 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: pr | ||
Check failure on line 1 in .github/workflows/pr.yml
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
jobs: | ||
dependencies: | ||
uses: the-guild-org/shared-config/.github/workflows/changesets-dependencies.yaml@main | ||
if: ${{ github.event.pull_request.title != 'Upcoming Release Changes' }} | ||
secrets: | ||
githubToken: ${{ secrets.GUILD_BOT_TOKEN }} | ||
alpha: | ||
uses: the-guild-org/shared-config/.github/workflows/release-snapshot.yml@main | ||
if: ${{ github.event.pull_request.title != 'Upcoming Release Changes' & false }} | ||
with: | ||
npmTag: alpha | ||
buildScript: build | ||
nodeVersion: 22 | ||
secrets: | ||
githubToken: ${{ secrets.GUILD_BOT_TOKEN }} | ||
npmToken: ${{ secrets.NPM_TOKEN }} | ||
release-candidate: | ||
uses: the-guild-org/shared-config/.github/workflows/release-snapshot.yml@main | ||
if: ${{ github.event.pull_request.title == 'Upcoming Release Changes' }} | ||
with: | ||
npmTag: rc | ||
buildScript: build | ||
nodeVersion: 22 | ||
restoreDeletedChangesets: true | ||
secrets: | ||
githubToken: ${{ secrets.GUILD_BOT_TOKEN }} | ||
npmToken: ${{ secrets.NPM_TOKEN }} |