From 38a6a3986d3167b08c0a6810cad83f63eb7f2cf2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lvaro=20Velad=20Galv=C3=A1n?= Date: Thu, 24 Oct 2024 12:29:50 +0200 Subject: [PATCH] ci: Do not cancel other Selenium jobs (#7489) Documentation: https://docs.github.com/en/enterprise-cloud@latest/actions/writing-workflows/choosing-what-your-workflow-does/control-the-concurrency-of-workflows-and-jobs --- .github/workflows/selenium-lab-tests.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/selenium-lab-tests.yaml b/.github/workflows/selenium-lab-tests.yaml index 9ef58d07ad..56bf6d9b3e 100644 --- a/.github/workflows/selenium-lab-tests.yaml +++ b/.github/workflows/selenium-lab-tests.yaml @@ -211,8 +211,9 @@ jobs: # Only one run of this job is allowed at a time, since it uses physical # resources in our lab. - concurrency: selenium-lab-${{ matrix.browser }} - cancel-in-progress: false + concurrency: + group: selenium-lab-${{ matrix.browser }} + cancel-in-progress: false needs: [compute-sha, build-shaka, matrix-config] strategy: