Skip to content

Commit 3ccd3c1

Browse files
authored
follow up to #464 (#466)
* follow up to #464 ref #464 (comment) * implement @DilumAluthge's suggestion
1 parent 19700de commit 3ccd3c1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
concurrency:
1111
# Skip intermediate builds: always.
1212
# Cancel intermediate builds: only if it is a pull request build.
13-
group: ${{ github.ref }}
13+
group: ${{ github.workflow }}-${{ github.ref }}
1414
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
1515
jobs:
1616
test:

.github/workflows/IntegrationTest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
concurrency:
99
# Skip intermediate builds: always.
1010
# Cancel intermediate builds: only if it is a pull request build.
11-
group: ${{ github.ref }}
11+
group: ${{ github.workflow }}-${{ github.ref }}
1212
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
1313

1414
jobs:

.github/workflows/JuliaNightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
concurrency:
1111
# Skip intermediate builds: always.
1212
# Cancel intermediate builds: only if it is a pull request build.
13-
group: ${{ github.ref }}
13+
group: ${{ github.workflow }}-${{ github.ref }}
1414
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
1515
jobs:
1616
test:

0 commit comments

Comments
 (0)