Cancel Workflows #93347
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 Workflows | |
on: | |
workflow_run: | |
workflows: ["Go", "Golicense", "Kind", "Build and push latest image if needed", "Antrea upgrade"] | |
types: | |
- requested | |
jobs: | |
cancel: | |
name: Cancel workflows | |
runs-on: ubuntu-latest | |
if: ${{ github.event.workflow_run.event == 'pull_request' }} | |
steps: | |
- uses: styfle/[email protected] | |
with: | |
all_but_latest: true | |
workflow_id: ${{ github.event.workflow.id }} |