From 4871f18dadee7ea102c02b65eb2a40ac8722250b Mon Sep 17 00:00:00 2001 From: YUNSHEN XIE <1084314248@qq.com> Date: Fri, 12 Sep 2025 19:16:26 +0800 Subject: [PATCH] fix(CE): update concurrency to stop CE tasks from canceling each other (#4083) --- .github/workflows/ce_job.yml | 2 +- .github/workflows/ci_image_update.yml | 2 +- .github/workflows/publish_job.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ce_job.yml b/.github/workflows/ce_job.yml index d5a2549ab..19e79dbaf 100644 --- a/.github/workflows/ce_job.yml +++ b/.github/workflows/ce_job.yml @@ -9,7 +9,7 @@ on: permissions: read-all concurrency: - group: ${{ github.ref }}-${{ github.sha }} + group: CE-Job-${{ github.ref }}-${{ github.sha }} cancel-in-progress: true jobs: diff --git a/.github/workflows/ci_image_update.yml b/.github/workflows/ci_image_update.yml index e01e5e8e1..943d24f0c 100644 --- a/.github/workflows/ci_image_update.yml +++ b/.github/workflows/ci_image_update.yml @@ -8,7 +8,7 @@ on: permissions: read-all concurrency: - group: ${{ github.ref }}-${{ github.sha }} + group: CI-Images-Build-${{ github.ref }}-${{ github.sha }} cancel-in-progress: true diff --git a/.github/workflows/publish_job.yml b/.github/workflows/publish_job.yml index 8785c2349..897463bb6 100644 --- a/.github/workflows/publish_job.yml +++ b/.github/workflows/publish_job.yml @@ -13,7 +13,7 @@ on: permissions: read-all concurrency: - group: ${{ github.ref }}-${{ github.sha }} + group: Publish-Job-${{ github.ref }}-${{ github.sha }} cancel-in-progress: true