Skip to content

Commit 031c6e1

Browse files
authored
Include workflow name in concurrency test (#461)
1 parent 339392a commit 031c6e1

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: CI
22

33
concurrency:
4-
group: build-${{ github.event.pull_request.number || github.ref }}
4+
group: build-${{ github.event.pull_request.number || github.ref }}-${{ github.workflow }}
55
cancel-in-progress: true
66

77
on:

.github/workflows/downstream.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ on:
99
- 'README.md'
1010
- '.github/workflows/TagBot.yml'
1111

12+
concurrency:
13+
group: build-${{ github.event.pull_request.number || github.ref }}-${{ github.workflow }}
14+
cancel-in-progress: true
15+
1216
jobs:
1317
pre_job:
1418
# continue-on-error: true # Uncomment once integration is finished

0 commit comments

Comments
 (0)