1
0
Fork 0
mirror of https://github.com/sdr-enthusiasts/docker-adsb-ultrafeeder.git synced 2024-10-16 13:50:46 +00:00
docker-adsb-ultrafeeder/.github/workflows/cancel_dupes.yml
2023-10-10 09:25:53 -06:00

20 lines
530 B
YAML

name: Cancelling Duplicates
on:
workflow_run:
workflows:
- "Deploy to Docker Hub"
- "Check Linting"
- "Tests"
types: ["requested"]
jobs:
cancel-duplicate-workflow-runs:
name: "Cancel duplicate workflow runs"
runs-on: ubuntu-18.04
steps:
- uses: potiuk/cancel-workflow-runs@master
name: "Cancel duplicate workflow runs"
with:
cancelMode: allDuplicates
token: ${{ secrets.GITHUB_TOKEN }}
sourceRunId: ${{ github.event.workflow_run.id }}