Merge pull request #34968 from Spookerton/spkrtn/fix/double-serpentid… #120
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 | |
permissions: | |
contents: read | |
on: | |
push: | |
branches: | |
- dev | |
# 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-22.04 | |
timeout-minutes: 3 | |
steps: | |
- uses: styfle/cancel-workflow-action@85880fa0301c86cca9da44039ee3bb12d3bedbfa | |
with: | |
workflow_id: 3545321 | |
access_token: ${{ github.token }} |