Skip to content

Commit ca9f18d

Browse files
committed
Build/Test Tools: Allow upgrade tests for multiple versions.
This adds the `new-version` input to the concurrency group name to prevent manually dispatched workflow runs from cancelling each other when different versions are being tested. See #62221. git-svn-id: https://develop.svn.wordpress.org/trunk@59973 602fd350-edb4-49c9-b593-d223f7449a82
1 parent f262997 commit ca9f18d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/upgrade-testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ on:
2727
concurrency:
2828
# The concurrency group contains the workflow name and the branch name for pull requests
2929
# or the commit hash for any other events.
30-
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }}
30+
group: ${{ github.workflow }}-${{ inputs.new-version || github.event_name == 'pull_request' && github.head_ref || github.sha }}
3131
cancel-in-progress: true
3232

3333
# Disable permissions for all available scopes by default.

0 commit comments

Comments
 (0)