Skip to content

Commit 0a914b5

Browse files
committed
Make use of concurrency cancel-in-progress
1 parent 26e6305 commit 0a914b5

File tree

5 files changed

+16
-18
lines changed

5 files changed

+16
-18
lines changed

.github/workflows/cancel_previous_runs.yml

-18
This file was deleted.

.github/workflows/fuzz.yml

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ on:
77
- cron: '0 1 * * SUN'
88
workflow_dispatch:
99

10+
concurrency:
11+
group: ${{ github.workflow }}-${{ github.ref }}
12+
cancel-in-progress: true
13+
1014
env:
1115
DOC_ROOT: ${{ github.workspace }}/ACE
1216
ACE_ROOT: ${{ github.workspace }}/ACE/ACE

.github/workflows/linux.yml

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ on:
77
- cron: '0 1 * * SUN'
88
workflow_dispatch:
99

10+
concurrency:
11+
group: ${{ github.workflow }}-${{ github.ref }}
12+
cancel-in-progress: true
13+
1014
jobs:
1115
build:
1216
strategy:

.github/workflows/macosx.yml

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ on:
77
- cron: '0 1 * * SUN'
88
workflow_dispatch:
99

10+
concurrency:
11+
group: ${{ github.workflow }}-${{ github.ref }}
12+
cancel-in-progress: true
13+
1014
jobs:
1115
build:
1216
strategy:

.github/workflows/windows.yml

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ on:
77
- cron: '0 1 * * SUN'
88
workflow_dispatch:
99

10+
concurrency:
11+
group: ${{ github.workflow }}-${{ github.ref }}
12+
cancel-in-progress: true
13+
1014
jobs:
1115
build:
1216
strategy:

0 commit comments

Comments
 (0)