Merge pull request #1565 from UristMcStation/dependabot/github_action… #10
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: Cancel | |
on: | |
push: | |
branches: | |
- baymerge-testing | |
# NB: We can discover workflow IDs for this job at https://api.github.com/repos/ORG/REPO/actions/workflows | |
jobs: | |
cancel: | |
name: 'Cancel Redundant Builds' | |
permissions: | |
actions: write # required to cancel other actions | |
runs-on: ubuntu-latest | |
timeout-minutes: 3 | |
steps: | |
- uses: styfle/cancel-workflow-action@85880fa0301c86cca9da44039ee3bb12d3bedbfa | |
with: | |
workflow_id: 3545321 | |
access_token: ${{ github.token }} |