From 5880e02707dcefc4ec527bd1c56f64b8b0eba391 Mon Sep 17 00:00:00 2001 From: Timmy Willison Date: Thu, 25 Apr 2024 13:07:55 -0400 Subject: [PATCH] Tests: include github ref in concurrency group - fixes cancelled workflows when multiple PRs are merged in quick succession to both the main and 3.x-stable branches Close gh-5481 --- .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 45f976583..1f06c98ba 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: ${{ github.workflow }} ${{ matrix.BROWSER }} + group: ${{ matrix.BROWSER }}-${{ github.ref }} timeout-minutes: 30 strategy: fail-fast: false -- 2.39.5