fix: bump polymesh-action-public to v2.0.2 to support new GitHub token format #62
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: Auth and Fast-Forward | |
| on: | |
| pull_request: | |
| types: [opened, reopened, synchronize] | |
| issue_comment: | |
| types: [created] | |
| jobs: | |
| auth-and-merge: | |
| if: > | |
| github.event_name == 'pull_request' || | |
| (github.event_name == 'issue_comment' && | |
| contains(github.event.comment.body, '/fast-forward') && | |
| github.event.issue.pull_request) | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| issues: write | |
| steps: | |
| - name: Polymesh Action - Auth and Fast-Forward | |
| uses: PolymeshAssociation/polymesh-action-public@v2.0.2 | |
| with: | |
| allowed-signers: ${{ vars.MIDDLEWARE_ALLOWED_SIGNERS }} | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| comment-mode: 'always' | |
| auth-required: 'true' | |
| required-key-type: 'ed25519-sk' |