This repository was archived by the owner on Jul 30, 2025. It is now read-only.
feat: 🎸 update SDK tests for 7.0 compatibility #5
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: fast-forward | |
| on: | |
| issue_comment: | |
| types: [created, edited] | |
| jobs: | |
| fast-forward: | |
| # Only run if the comment contains the /fast-forward command. | |
| if: ${{ 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: Fast forwarding | |
| uses: sequoia-pgp/fast-forward@v1 | |
| with: | |
| merge: true | |
| # To reduce the workflow's verbosity, use 'on-error' | |
| # to only post a comment when an error occurs, or 'never' to | |
| # never post a comment. (In all cases the information is | |
| # still available in the step's summary.) | |
| comment: on-error | |
| GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }} ## This allows to trigger push action from within this workflow. Read more - https://docs.github.com/en/actions/using-workflows/triggering-a-workflow#triggering-a-workflow-from-a-workflow |