docs: unify naming to “SPL Token-2022” in README #496
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: Dismiss Stale PR Reviews | |
| on: | |
| pull_request: | |
| types: [ | |
| opened, | |
| synchronize, | |
| reopened, | |
| ] | |
| permissions: | |
| actions: read | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| dismiss_stale_approvals: | |
| # Only run when: | |
| # 1) the PR author isn’t dependabot[bot] | |
| # 2) the author_association isn't owner/member/collaborator | |
| if: ${{ github.event.pull_request.user.login != 'dependabot[bot]' && !contains('OWNER,MEMBER,COLLABORATOR', github.event.pull_request.author_association) }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Dismiss Stale PR Reviews | |
| uses: withgraphite/dismiss-stale-approvals@main | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} |