-
Notifications
You must be signed in to change notification settings - Fork 13
44 lines (43 loc) · 1.32 KB
/
cancel.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: cancel
on: [pull_request]
jobs:
cancel:
name: 'Cancel Previous Runs'
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- uses: styfle/cancel-workflow-action@0.9.0
name: 'Benchmarks'
with:
workflow_id: 'benchmark.yml'
access_token: ${{ github.token }}
- uses: styfle/cancel-workflow-action@0.9.0
name: 'Examples'
with:
workflow_id: 'examples.yml'
access_token: ${{ github.token }}
- uses: styfle/cancel-workflow-action@0.9.0
name: 'Unit tests'
with:
workflow_id: 'test.yml'
access_token: ${{ github.token }}
- uses: styfle/cancel-workflow-action@0.9.0
name: 'System Tests'
with:
workflow_id: 'system_test.yml'
access_token: ${{ github.token }}
- uses: styfle/cancel-workflow-action@0.9.0
name: 'Linux Build'
with:
workflow_id: 'linux.yml'
access_token: ${{ github.token }}
- uses: styfle/cancel-workflow-action@0.9.0
name: 'MacOS Build'
with:
workflow_id: 'mac.yml'
access_token: ${{ github.token }}
- uses: styfle/cancel-workflow-action@0.9.0
name: 'Windows Build'
with:
workflow_id: 'windows.yml'
access_token: ${{ github.token }}