From e03570f99e3e0d626a18d17a864131d605764dc3 Mon Sep 17 00:00:00 2001 From: mkorwel Date: Tue, 21 Oct 2025 22:00:49 -0700 Subject: [PATCH] fix(workflows): namespace concurrency groups Prefixes the concurrency group names in 'ci.yml' and 'e2e.yml' with 'ci-' and 'e2e-' respectively. This prevents the workflows from canceling each other out when they are triggered by the same orchestrator workflow, as the 'github.workflow' context variable was resolving to the same value for both. --- .github/workflows/ci.yml | 2 +- .github/workflows/e2e.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d2682f6a1b..e0a43e8ae6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ on: type: 'string' concurrency: - group: '${{ github.workflow }}-${{ github.head_ref || github.ref }}' + group: 'ci-${{ github.workflow }}-${{ github.head_ref || github.ref }}' cancel-in-progress: |- ${{ github.ref != 'refs/heads/main' && !startsWith(github.ref, 'refs/heads/release/') }} diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index b68c97595d..2033b02eee 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -11,7 +11,7 @@ on: type: 'string' concurrency: - group: '${{ github.workflow }}-${{ github.head_ref || github.ref }}' + group: 'e2e-${{ github.workflow }}-${{ github.head_ref || github.ref }}' cancel-in-progress: |- ${{ github.ref != 'refs/heads/main' && !startsWith(github.ref, 'refs/heads/release/') }}