From 01dc90bfa75f52bb8792acfb456c5d98a71b5ef6 Mon Sep 17 00:00:00 2001 From: Flaminel Date: Thu, 12 Mar 2026 22:30:59 +0200 Subject: [PATCH] Fix test workflows cancelling each other (#502) --- .github/workflows/e2e.yml | 2 +- .github/workflows/test.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 8306a9b1..76a20199 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -16,7 +16,7 @@ on: workflow_call: concurrency: - group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + group: E2E Tests-${{ github.event.pull_request.number || github.ref }} cancel-in-progress: true permissions: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 06a65ed0..d44f0696 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,7 +15,7 @@ on: # Cancel in-progress runs for the same PR concurrency: - group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + group: Tests-${{ github.event.pull_request.number || github.ref }} cancel-in-progress: true jobs: