From a5bac65e0ccbb4bdb7069bc709f0852fcdbbdddc Mon Sep 17 00:00:00 2001 From: Timmy Willison Date: Wed, 29 May 2024 11:06:42 -0400 Subject: [PATCH] Tests: revert concurrency group change - It's common for us to merge to main and cherry pick to 3.x-stable, so it's best if concurrency is shared between branches, which is effectively what we had already as it matches on workflow name and browser. Ideally, it could also match on the corresponding commit, but it seems the commit message is not available in the github context. Close gh-5493 --- .github/workflows/browserstack.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/browserstack.yml b/.github/workflows/browserstack.yml index b6a917b14..e745d3603 100644 --- a/.github/workflows/browserstack.yml +++ b/.github/workflows/browserstack.yml @@ -15,7 +15,7 @@ jobs: NODE_VERSION: 20.x name: ${{ matrix.BROWSER }} concurrency: - group: ${{ matrix.BROWSER }}-${{ github.ref }} + group: ${{ github.workflow }}-${{ matrix.BROWSER }} timeout-minutes: 30 strategy: fail-fast: false -- 2.39.5