Skip to content

Commit 2d8ba9b

Browse files
committed
chore: update github actions to cancel previous in same workflow+branch
1 parent dfbf0a9 commit 2d8ba9b

File tree

4 files changed

+20
-0
lines changed

4 files changed

+20
-0
lines changed

.github/workflows/cli.yml

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
name: CLI
22

3+
# cancel any prior runs for this workflow and this PR (or branch)
4+
concurrency:
5+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
6+
cancel-in-progress: true
7+
38
on:
49
push:
510
branches: [ main ]

.github/workflows/kind.yml

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
name: Kind
22

3+
# cancel any prior runs for this workflow and this PR (or branch)
4+
concurrency:
5+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
6+
cancel-in-progress: true
7+
38
on:
49
push:
510
branches: [ main ]

.github/workflows/self-test.yml

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Testing of the self-test capability
22
name: Self-test
33

4+
# cancel any prior runs for this workflow and this PR (or branch)
5+
concurrency:
6+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
7+
cancel-in-progress: true
8+
49
on:
510
push:
611
branches: [ main ]

.github/workflows/ui.yml

+5
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33

44
name: UI
55

6+
# cancel any prior runs for this workflow and this PR (or branch)
7+
concurrency:
8+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
9+
cancel-in-progress: true
10+
611
on:
712
push:
813
branches: [ main ]

0 commit comments

Comments
 (0)