Skip to content

Commit 29c38df

Browse files
authored
rename CI concurrent group, cancel concurrent downstream (#375)
1 parent c19bbae commit 29c38df

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
name: CI
2+
23
concurrency:
3-
group: build-${{ github.event.pull_request.number || github.ref }}
4+
group: build-${{ github.event.pull_request.number || github.ref }}-${{ github.workflow }}
45
cancel-in-progress: true
6+
57
on:
68
push:
79
branches:
810
- master
911
pull_request:
12+
1013
jobs:
1114
pre_job:
1215
# continue-on-error: true # Uncomment once integration is finished

.github/workflows/downstream.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
name: IntegrationTest
2+
3+
concurrency:
4+
group: build-${{ github.event.pull_request.number || github.ref }}-${{ github.workflow }}
5+
cancel-in-progress: true
6+
27
on:
38
push:
49
branches: [master]

0 commit comments

Comments
 (0)