Skip to content

Commit 1c965f2

Browse files
Set concurrency group in workflows
1 parent 92b4348 commit 1c965f2

File tree

3 files changed

+14
-0
lines changed

3 files changed

+14
-0
lines changed

.github/workflows/abidiff.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ name: abidiff
55

66
on: [push, pull_request]
77

8+
concurrency:
9+
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
10+
cancel-in-progress: true
11+
812
defaults:
913
run:
1014
shell: sh

.github/workflows/cifuzz.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
name: CIFuzz
2+
23
on: [pull_request]
4+
5+
concurrency:
6+
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
7+
cancel-in-progress: true
8+
39
jobs:
410
Fuzzing:
511
runs-on: ubuntu-latest

.github/workflows/test.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ on:
2020
type: boolean
2121
default: true
2222

23+
concurrency:
24+
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
25+
cancel-in-progress: true
26+
2327
env:
2428
GTEST_FILTER: ${{ github.event.inputs.gtest_filter || '*' }}
2529

0 commit comments

Comments
 (0)