Make WordPress Core


Ignore:
Timestamp:
01/28/2025 11:47:49 PM (19 months ago)
Author:
johnbillion
Message:

Build/Test Tools: Add some more paths restrictions to GitHub Actions workflow files to minimise unnecessary workflow runs.

Props mukesh27, johnbillion

See #62280

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/.github/workflows/end-to-end-tests.yml

    r59720 r59725  
    1818      - '5.[3-9]'
    1919      - '[6-9].[0-9]'
     20    paths:
     21      # Any change to a PHP, CSS, or JavaScript file should run checks.
     22      - '**.css'
     23      - '**.js'
     24      - '**.php'
     25      # These files configure npm and the task runner. Changes could affect the outcome.
     26      - 'package*.json'
     27      - 'Gruntfile.js'
     28      - 'webpack.config.js'
     29      - 'tools/webpack/**'
     30      # These files configure Composer. Changes could affect the outcome.
     31      - 'composer.*'
     32      # This files affect the e2e tests. Changes could affect the outcome.
     33      - 'tests/e2e/**'
     34      # Confirm any changes to relevant workflow files.
     35      - '.github/workflows/end-to-end-tests.yml'
     36      - '.github/workflows/reusable-end-to-end-tests-*.yml'
    2037  workflow_dispatch:
    2138
Note: See TracChangeset for help on using the changeset viewer.