Skip to content

Commit 3555d1f

Browse files
authored
chore: workflow concurrency=1 (#4573)
1 parent 3deadee commit 3555d1f

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

.github/workflows/builds.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ on:
88
- master
99
- main
1010
pull_request:
11-
11+
concurrency:
12+
group: ${{ github.workflow }}-${{ github.head_ref }}
13+
cancel-in-progress: true
1214
env:
1315
arch_amd64: amd64
1416
arch_arm64: arm64

.github/workflows/tests.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ on:
66
- main
77
- "release/*"
88
pull_request:
9+
concurrency:
10+
group: ${{ github.workflow }}-${{ github.head_ref }}
11+
cancel-in-progress: true
912
jobs:
1013
integration:
1114
name: Integration

.github/workflows/verify.yml

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ on:
77
- master
88
- main
99
pull_request:
10+
concurrency:
11+
group: ${{ github.workflow }}-${{ github.head_ref }}
12+
cancel-in-progress: true
1013
jobs:
1114
generate:
1215
name: Correct generated files

0 commit comments

Comments
 (0)