Skip to content

Commit 990e994

Browse files
committed
only cancel in-progress builds that are on the same branch
1 parent f09c886 commit 990e994

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build-deb.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ on:
2222
- cron: '0 10 * * *'
2323

2424
concurrency:
25-
group: build-deb
25+
group: build-deb-${{ github.ref_name }}
2626
cancel-in-progress: true
2727

2828
permissions:

.github/workflows/build-dmg.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ on:
2222
- cron: '0 10 * * *'
2323

2424
concurrency:
25-
group: build-dmg
25+
group: build-dmg-${{ github.ref_name }}
2626
cancel-in-progress: true
2727

2828
permissions:

.github/workflows/build-exe.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ on:
2222
- cron: '0 10 * * *'
2323

2424
concurrency:
25-
group: build-exe
25+
group: build-exe-${{ github.ref_name }}
2626
cancel-in-progress: true
2727

2828
permissions:

0 commit comments

Comments
 (0)