2021-08-15 17:07:27 +02:00
|
|
|
name: Cancel old pull request workflows
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_run:
|
|
|
|
workflows: ["PR build check"]
|
|
|
|
types:
|
|
|
|
- requested
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
cancel:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2021-12-17 16:47:55 +01:00
|
|
|
- uses: styfle/cancel-workflow-action@0.9.1
|
2021-08-15 17:07:27 +02:00
|
|
|
with:
|
2021-12-17 16:47:55 +01:00
|
|
|
all_but_latest: true
|
2021-08-15 17:07:27 +02:00
|
|
|
workflow_id: ${{ github.event.workflow.id }}
|