Conditionally run actions based on files modified by PR, feature branch or pushed commits
Go to file
Michal Dorner 7d201829e2
Support reusable paths blocks via yaml anchors (#13)
* Add support for nested arrays of path expressions

* Remove pull_request trigger type options

Default value is fine: opened, synchronize, reopened

* Add CHANGELOG

* Update README
2020-06-19 23:39:06 +02:00
__tests__ Support reusable paths blocks via yaml anchors (#13) 2020-06-19 23:39:06 +02:00
.github Support reusable paths blocks via yaml anchors (#13) 2020-06-19 23:39:06 +02:00
.vscode Implement fetching, filtering and tests 2020-05-21 00:31:16 +02:00
dist Support reusable paths blocks via yaml anchors (#13) 2020-06-19 23:39:06 +02:00
src Support reusable paths blocks via yaml anchors (#13) 2020-06-19 23:39:06 +02:00
.eslintignore Initial commit 2020-05-20 17:03:08 +02:00
.eslintrc.json Support reusable paths blocks via yaml anchors (#13) 2020-06-19 23:39:06 +02:00
.gitignore Initial commit 2020-05-20 17:03:08 +02:00
.prettierignore Initial commit 2020-05-20 17:03:08 +02:00
.prettierrc.json Implement fetching, filtering and tests 2020-05-21 00:31:16 +02:00
action.yml Support push event (#10) 2020-06-15 21:49:10 +02:00
CHANGELOG.md Support reusable paths blocks via yaml anchors (#13) 2020-06-19 23:39:06 +02:00
jest.config.js Initial commit 2020-05-20 17:03:08 +02:00
LICENSE Support push event (#10) 2020-06-15 21:49:10 +02:00
package-lock.json Support reusable paths blocks via yaml anchors (#13) 2020-06-19 23:39:06 +02:00
package.json Support reusable paths blocks via yaml anchors (#13) 2020-06-19 23:39:06 +02:00
README.md Support reusable paths blocks via yaml anchors (#13) 2020-06-19 23:39:06 +02:00
tsconfig.json Initial commit 2020-05-20 17:03:08 +02:00

paths-filter status

Paths filter

With this Github Action you can execute your workflow steps only if relevant files are modified.

It saves time and resources especially in monorepo setups, where you can run slow tasks (e.g. integration tests or deployments) only for changed components. Github workflows built-in path filters doesn't allow this because they doesn't work on a level of individual jobs or steps.

Action supports workflows triggered by:

  • pull_request: changes are detected against the base branch
  • push: changes are detected against the most recent commit on the same branch before the push

Usage

Filter rules are defined using YAML format. Each filter rule is a list of glob expressions. Corresponding output variable will be created to indicate if there's a changed file matching any of the rule glob expressions. Output variables can be later used in the if clause to conditionally run specific steps.

Inputs

  • token: GitHub Access Token - defaults to ${{ github.token }}
  • filters: Path to the configuration file or directly embedded string in YAML format. Filter configuration is a dictionary, where keys specifies rule names and values are lists of file path patterns.

Outputs

  • For each rule it sets output variable named by the rule to text:
    • 'true' - if any of changed files matches any of rule patterns
    • 'false' - if none of changed files matches any of rule patterns

Notes

  • minimatch dot option is set to true - therefore globbing will match also paths where file or folder name starts with a dot.
  • You can use YAML anchors to reuse path expression(s) inside another rule. See example in the tests.

Example

on:
  push:
    branches:
      - master
  pull_request:
    branches:
      - master
jobs:
  tests:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2
    - uses: dorny/paths-filter@v2.1.0
      id: filter
      with:
        # inline YAML or path to separate file (e.g.: .github/filters.yaml)
        filters: |
          backend:
            - 'backend/**/*'
          frontend:
            - 'frontend/**/*'          

    # run only if 'backend' files were changed
    - name: backend unit tests
      if: steps.filter.outputs.backend == 'true'
      run: ...

    # run only if 'frontend' files were changed
    - name: frontend unit tests
      if: steps.filter.outputs.frontend == 'true'
      run: ...

    # run if 'backend' or 'frontend' files were changed
    - name: e2e tests
      if: steps.filter.outputs.backend == 'true' || steps.filter.outputs.frontend == 'true'
      run: ...

How it works

  1. If action was triggered by pull request:
    • If access token was provided it's used to fetch list of changed files from Github API.
    • If access token was not provided, top of the base branch is fetched and changed files are detected using git diff-index command.
  2. If action was triggered by push event
    • Last commit before the push is fetched and changed files are detected using git diff-index command.
  3. For each filter rule it checks if there is any matching file
  4. Output variables are set

Difference from similar projects:

  • Has Changed Path
    • detects changes from previous commit
    • you have to configure checkout action to fetch some number of previous commits
    • outputs only single true / false value if any of provided paths contains changes
  • Changed Files Exporter
    • outputs lists with paths of created, updated and deleted files
    • output is not directly usable in the if clause
  • Changed File Filter
    • allows change detection between any refs or commits
    • fetches whole history of your git repository
    • might have negative performance impact on big repositories (github by default fetches only single commit)