You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
464 B
YAML
18 lines
464 B
YAML
name: Cancelling Duplicates
|
|
on:
|
|
workflow_run:
|
|
workflows: ['CI']
|
|
types: ['requested']
|
|
|
|
jobs:
|
|
cancel-duplicate-workflow-runs:
|
|
name: "Cancel duplicate workflow runs"
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: potiuk/cancel-workflow-runs@master
|
|
name: "Cancel duplicate workflow runs"
|
|
with:
|
|
cancelMode: duplicates
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
sourceRunId: ${{ github.event.workflow_run.id }}
|