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
This commit is contained in:
Timmy Willison 2024-05-29 11:06:42 -04:00 committed by GitHub
parent 37bded3522
commit a5bac65e0c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -15,7 +15,7 @@ jobs:
NODE_VERSION: 20.x NODE_VERSION: 20.x
name: ${{ matrix.BROWSER }} name: ${{ matrix.BROWSER }}
concurrency: concurrency:
group: ${{ matrix.BROWSER }}-${{ github.ref }} group: ${{ github.workflow }}-${{ matrix.BROWSER }}
timeout-minutes: 30 timeout-minutes: 30
strategy: strategy:
fail-fast: false fail-fast: false