Skip to content

Commit 180060a

Browse files
committed
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 <[email protected]>
1 parent 3e661a9 commit 180060a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/e2e.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
(github.event_name == 'pull_request_target' && (github.event.label.name == 'e2e' || contains(github.event.pull_request.labels.*.name, 'e2e')))
3535
3636
concurrency:
37-
group: ${{ github.workflow }}-${{ matrix.provider }}-${{ github.event.pull_request.number || github.ref }}
37+
group: ${{ github.workflow }}-${{ matrix.provider }}-${{ github.event.pull_request.number || github.ref_name }}
3838
cancel-in-progress: true
3939

4040
name: e2e tests

0 commit comments

Comments
 (0)