Make WordPress Core

Changeset 59973


Ignore:
Timestamp:
03/11/2025 03:57:22 PM (4 months ago)
Author:
desrosj
Message:

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.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/.github/workflows/upgrade-testing.yml

    r59720 r59973  
    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
Note: See TracChangeset for help on using the changeset viewer.