New onlyComplete() helper to filter only complete results
#1603
Workflow file for this run
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 | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| dependencies: | |
| uses: the-guild-org/shared-config/.github/workflows/changesets-dependencies.yaml@main | |
| secrets: | |
| githubToken: ${{ secrets.GITHUB_TOKEN }} | |
| alpha: | |
| permissions: | |
| contents: write | |
| id-token: write | |
| packages: write | |
| uses: the-guild-org/shared-config/.github/workflows/release-snapshot.yml@main | |
| if: ${{ github.event.pull_request.title != 'Upcoming Release Changes' }} | |
| with: | |
| npmTag: alpha | |
| buildScript: build | |
| nodeVersion: 22 | |
| secrets: | |
| githubToken: ${{ secrets.GITHUB_TOKEN }} | |
| npmToken: ${{ secrets.NPM_TOKEN }} | |
| release-candidate: | |
| permissions: | |
| contents: write | |
| id-token: write | |
| packages: write | |
| uses: the-guild-org/shared-config/.github/workflows/release-snapshot.yml@main | |
| if: ${{ github.event.pull_request.title == 'Upcoming Release Changes' }} | |
| with: | |
| npmTag: rc | |
| restoreDeletedChangesets: true | |
| buildScript: build | |
| nodeVersion: 22 | |
| secrets: | |
| githubToken: ${{ secrets.GITHUB_TOKEN }} | |
| npmToken: ${{ secrets.NPM_TOKEN }} |