From 26600598f4bbe4adae5f7c973aa6959543825926 Mon Sep 17 00:00:00 2001 From: Chmouel Boudjnah Date: Wed, 16 Apr 2025 10:10:52 +0200 Subject: [PATCH] fix: update concurrency group expression in e2e workflow - Updates concurrency group to use github.ref_name for accurate branch/tag naming - Ensures proper cancellation of in-progress runs for same workflow/provider combination Signed-off-by: Chmouel Boudjnah --- .github/workflows/e2e.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index dbd6225a4c..e8a76b53e3 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -26,7 +26,7 @@ jobs: (github.event_name == 'pull_request_target' && (github.event.label.name == 'e2e' || contains(github.event.pull_request.labels.*.name, 'e2e'))) concurrency: - group: ${{ github.workflow }}-${{ matrix.provider }}-${{ github.event.pull_request.number || github.ref }} + group: ${{ github.workflow }}-${{ matrix.provider }}-${{ github.event.pull_request.number || github.ref_name }} cancel-in-progress: true name: e2e tests