Make WordPress Core


Ignore:
Timestamp:
10/18/2024 02:00:27 PM (13 months ago)
Author:
desrosj
Message:

Build/Test Tools: Refine paths filter for workflows.

Some GitHub Action workflows use the paths filter to limit when workflows run for pull requests. This helps avoid running workflows unnecessarily when the pull request does not change any relevant code.

Currently, a few of these workflows are configured to run when any .yml file in the .github/workflows/ directory is changed. This updates those workflows to target more specific workflow files for more efficient running.

See #61564.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/.github/workflows/test-old-branches.yml

    r58754 r59252  
    88    paths:
    99      - '.github/workflows/test-old-branches.yml'
    10       - '.github/workflows/reusable-phpunit-tests-v1.yml'
    11       - '.github/workflows/reusable-phpunit-tests-v2.yml'
     10      - '.github/workflows/reusable-phpunit-tests-v[0-9]+.yml'
    1211  # Run twice a month on the 1st and 15th at 00:00 UTC.
    1312  schedule:
Note: See TracChangeset for help on using the changeset viewer.