From 1b69f2d79fa42b49a377a1d77c2c84cf62b41635 Mon Sep 17 00:00:00 2001 From: Mario Vitale Date: Thu, 11 Apr 2024 06:29:45 +0200 Subject: [PATCH] CLD-7473 Limit parallelism for full E2E tests (#26741) * Limit parallelism for full E2E tests * Add temporary changes for testing * Better concurrency spec * Do not consider github.ref for concurrency grouping * Further improve the concurrency grouping * Remove testing lines --- .github/workflows/e2e-fulltests-ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/e2e-fulltests-ci.yml b/.github/workflows/e2e-fulltests-ci.yml index 278f76ab2a3..bc3b2cb4738 100644 --- a/.github/workflows/e2e-fulltests-ci.yml +++ b/.github/workflows/e2e-fulltests-ci.yml @@ -29,6 +29,10 @@ on: - NONE default: NONE +concurrency: + group: "${{ github.workflow }}-${{ inputs.PR_NUMBER || inputs.ref }}" + cancel-in-progress: true + jobs: resolve-ref: runs-on: ubuntu-22.04