10000 Tests: revert concurrency group change by timmywil · Pull Request #5492 · jquery/jquery · GitHub
[go: up one dir, main page]

Skip to content

Tests: revert concurrency group change #5492

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.
  • Loading branch information
timmywil committed May 24, 2024
commit d68933eb1fc11d10974590d6e299016c214f17fb
2 changes: 1 addition & 1 deletion .github/workflows/browserstack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
0