Use the Primer GitHub App for auth instead of the GPR_AUTH_TOKEN_SHARED #575
Workflow file for this run
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: Check for changeset | |
on: | |
pull_request: | |
types: | |
# On by default if you specify no types. | |
- 'opened' | |
- 'reopened' | |
- 'synchronize' | |
# For `skip-label` only. | |
- 'labeled' | |
- 'unlabeled' | |
jobs: | |
check-for-changeset: | |
name: Check for changeset | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: 'Check for changeset' | |
uses: brettcannon/check-for-changed-files@v1 | |
with: | |
file-pattern: '.changeset/*.md' | |
skip-label: 'skip changeset' | |
failure-message: 'No changeset found. If these changes should not result in a new version, apply the ${skip-label} label to this pull request. If these changes should result in a version bump, please add a changeset https://git.io/J6QvQ' |