diff options
author | Timmy Willison <timmywil@users.noreply.github.com> | 2024-04-25 13:07:55 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-25 13:07:55 -0400 |
commit | 5880e02707dcefc4ec527bd1c56f64b8b0eba391 (patch) | |
tree | 28e3efa5483696b433392c174c238aaeddfe9abe /.github/workflows/browserstack.yml | |
parent | 399a78ee9fc5802509df462a2851aef1b60b7fbc (diff) | |
download | jquery-5880e02707dcefc4ec527bd1c56f64b8b0eba391.tar.gz jquery-5880e02707dcefc4ec527bd1c56f64b8b0eba391.zip |
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
Diffstat (limited to '.github/workflows/browserstack.yml')
-rw-r--r-- | .github/workflows/browserstack.yml | 2 |
1 files changed, 1 insertions, 1 deletions
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 |