Make WordPress Core


Ignore:
Timestamp:
01/28/2025 11:47:49 PM (17 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/test-build-processes.yml

    r59720 r59725  
    1515      - '3.[7-9]'
    1616      - '[4-9].[0-9]'
     17    paths:
     18      # Any change to a PHP, CSS, JavaScript, or JSON file should run checks.
     19      - '**.css'
     20      - '**.js'
     21      - '**.json'
     22      - '**.php'
     23      # These files configure npm and the task runner. Changes could affect the outcome.
     24      - 'package*.json'
     25      - 'Gruntfile.js'
     26      - 'webpack.config.js'
     27      - 'tools/webpack/**'
     28      # These files configure Composer. Changes could affect the outcome.
     29      - 'composer.*'
     30      # Confirm any changes to relevant workflow files.
     31      - '.github/workflows/test-build-processes.yml'
     32      - '.github/workflows/reusable-test-core-build-process.yml'
     33      - '.github/workflows/reusable-test-gutenberg-build-process.yml'
    1734  workflow_dispatch:
    1835
Note: See TracChangeset for help on using the changeset viewer.