Skip to content

Commit 4871f18

Browse files
authored
fix(CE): update concurrency to stop CE tasks from canceling each other (#4083)
1 parent 987609c commit 4871f18

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ce_job.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
permissions: read-all
1010

1111
concurrency:
12-
group: ${{ github.ref }}-${{ github.sha }}
12+
group: CE-Job-${{ github.ref }}-${{ github.sha }}
1313
cancel-in-progress: true
1414

1515
jobs:

.github/workflows/ci_image_update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
permissions: read-all
99

1010
concurrency:
11-
group: ${{ github.ref }}-${{ github.sha }}
11+
group: CI-Images-Build-${{ github.ref }}-${{ github.sha }}
1212
cancel-in-progress: true
1313

1414

.github/workflows/publish_job.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
permissions: read-all
1414

1515
concurrency:
16-
group: ${{ github.ref }}-${{ github.sha }}
16+
group: Publish-Job-${{ github.ref }}-${{ github.sha }}
1717
cancel-in-progress: true
1818

1919

0 commit comments

Comments
 (0)