2020-10-01 08:55:29 +00:00
# Paths Changes Filter
2020-05-20 15:03:08 +00:00
2021-07-08 03:32:59 +00:00
[GitHub Action ](https://github.com/features/actions ) that enables conditional execution of workflow steps and jobs, based on the files modified by pull request, on a feature
2021-04-19 20:18:44 +00:00
branch, or by the recently pushed commits.
2020-05-20 15:03:08 +00:00
2021-04-19 20:18:44 +00:00
Run slow tasks like integration tests or deployments only for changed components. It saves time and resources, especially in monorepo setups.
2021-07-08 03:32:59 +00:00
GitHub workflows built-in [path filters ](https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#onpushpull_requestpaths )
2020-12-17 07:57:31 +00:00
don't allow this because they don't work on a level of individual jobs or steps.
2020-05-20 15:03:08 +00:00
2020-10-17 20:38:15 +00:00
**Real world usage examples:**
2021-07-08 03:52:11 +00:00
2020-10-17 20:38:15 +00:00
- [sentry.io ](https://sentry.io/ ) - [backend-test-py3.6.yml ](https://github.com/getsentry/sentry/blob/ca0e43dc5602a9ab2e06d3f6397cc48fb5a78541/.github/workflows/backend-test-py3.6.yml#L32 )
- [GoogleChrome/web.dev ](https://web.dev/ ) - [lint-and-test-workflow.yml ](https://github.com/GoogleChrome/web.dev/blob/e1f0c28964e99ce6a996c1e3fd3ee1985a7a04f6/.github/workflows/lint-and-test-workflow.yml#L33 )
2021-07-08 03:52:11 +00:00
## Supported workflows
2020-09-14 15:19:32 +00:00
2020-10-16 10:28:12 +00:00
- **Pull requests:**
- Workflow triggered by ** [pull_request ](https://docs.github.com/en/actions/reference/events-that-trigger-workflows#pull_request )**
2020-09-14 15:19:32 +00:00
or ** [pull_request_target ](https://docs.github.com/en/actions/reference/events-that-trigger-workflows#pull_request_target )** event
- Changes are detected against the pull request base branch
2021-07-08 03:32:59 +00:00
- Uses GitHub REST API to fetch a list of modified files
2020-10-16 10:28:12 +00:00
- **Feature branches:**
- Workflow triggered by ** [push ](https://docs.github.com/en/actions/reference/events-that-trigger-workflows#push )**
or any other ** [event ](https://docs.github.com/en/free-pro-team@latest/actions/reference/events-that-trigger-workflows )**
- The `base` input parameter must not be the same as the branch that triggered the workflow
2021-04-19 20:18:44 +00:00
- Changes are detected against the merge-base with the configured base branch or the default branch
2020-09-14 15:19:32 +00:00
- Uses git commands to detect changes - repository must be already [checked out ](https://github.com/actions/checkout )
2021-04-19 20:18:44 +00:00
- **Master, Release, or other long-lived branches:**
2020-10-16 10:28:12 +00:00
- Workflow triggered by ** [push ](https://docs.github.com/en/actions/reference/events-that-trigger-workflows#push )** event
2021-04-19 20:18:44 +00:00
when `base` input parameter is the same as the branch that triggered the workflow:
2020-10-16 10:28:12 +00:00
- Changes are detected against the most recent commit on the same branch before the push
- Workflow triggered by any other ** [event ](https://docs.github.com/en/free-pro-team@latest/actions/reference/events-that-trigger-workflows )**
when `base` input parameter is commit SHA:
- Changes are detected against the provided `base` commit
- Workflow triggered by any other ** [event ](https://docs.github.com/en/free-pro-team@latest/actions/reference/events-that-trigger-workflows )**
2021-04-19 20:18:44 +00:00
when `base` input parameter is the same as the branch that triggered the workflow:
- Changes are detected from the last commit
2020-09-14 15:19:32 +00:00
- Uses git commands to detect changes - repository must be already [checked out ](https://github.com/actions/checkout )
2020-11-22 19:59:32 +00:00
- **Local changes**
- Workflow triggered by any event when `base` input parameter is set to `HEAD`
2021-04-19 20:18:44 +00:00
- Changes are detected against the current HEAD
2020-11-22 19:59:32 +00:00
- Untracked files are ignored
2020-09-14 15:19:32 +00:00
2020-10-01 08:55:29 +00:00
## Example
2021-07-08 03:52:11 +00:00
2020-10-01 08:55:29 +00:00
```yaml
- uses: dorny/paths-filter@v2
id: changes
with:
filters: |
src:
- 'src/**'
# run only if some file in 'src' folder was changed
2021-07-08 03:33:53 +00:00
- if: steps.changes.outputs.src == 'true'
2020-10-01 08:55:29 +00:00
run: ...
```
2021-07-08 03:52:11 +00:00
2020-10-01 08:55:29 +00:00
For more scenarios see [examples ](#examples ) section.
2020-09-14 15:19:32 +00:00
2021-07-08 03:52:11 +00:00
## Notes
2020-11-08 23:36:08 +00:00
- Paths expressions are evaluated using [picomatch ](https://github.com/micromatch/picomatch ) library.
2021-04-19 20:18:44 +00:00
Documentation for path expression format can be found on the project GitHub page.
2020-12-17 21:33:11 +00:00
- Picomatch [dot ](https://github.com/micromatch/picomatch#options ) option is set to true.
2021-04-19 20:18:44 +00:00
Globbing will also match paths where file or folder name starts with a dot.
- It's recommended to quote your path expressions with `'` or `"` . Otherwise, you will get an error if it starts with `*` .
2020-09-29 22:32:49 +00:00
- Local execution with [act ](https://github.com/nektos/act ) works only with alternative runner image. Default runner doesn't have `git` binary.
- Use: `act -P ubuntu-latest=nektos/act-environments-ubuntu:18.04`
2020-09-14 15:19:32 +00:00
2021-07-08 03:52:11 +00:00
## What's New
2020-09-14 15:19:32 +00:00
2021-04-11 18:49:05 +00:00
- Add `ref` input parameter
2021-02-20 10:28:11 +00:00
- Add `list-files: csv` format
2020-12-17 21:33:11 +00:00
- Configure matrix job to run for each folder with changes using `changes` output
2020-12-13 20:07:47 +00:00
- Improved listing of matching files with `list-files: shell` and `list-files: escape` options
2020-11-08 23:36:08 +00:00
- Paths expressions are now evaluated using [picomatch ](https://github.com/micromatch/picomatch ) library
2020-09-14 15:19:32 +00:00
2021-04-19 20:18:44 +00:00
For more information, see [CHANGELOG ](https://github.com/dorny/paths-filter/blob/master/CHANGELOG.md )
2020-09-14 15:19:32 +00:00
2021-07-08 03:52:11 +00:00
## Usage
2020-09-14 15:19:32 +00:00
```yaml
- uses: dorny/paths-filter@v2
with:
# Defines filters applied to detected changed files.
2021-04-19 20:18:44 +00:00
# Each filter has a name and a list of rules.
2020-09-14 15:19:32 +00:00
# Rule is a glob expression - paths of all changed
# files are matched against it.
# Rule can optionally specify if the file
2021-04-19 20:18:44 +00:00
# should be added, modified, or deleted.
# For each filter, there will be a corresponding output variable to
2020-09-14 15:19:32 +00:00
# indicate if there's a changed file matching any of the rules.
2021-04-19 20:18:44 +00:00
# Optionally, there can be a second output variable
2020-09-14 15:19:32 +00:00
# set to list of all files matching the filter.
2021-04-19 20:18:44 +00:00
# Filters can be provided inline as a string (containing valid YAML document),
# or as a relative path to a file (e.g.: .github/filters.yaml).
2020-09-14 15:19:32 +00:00
# Filters syntax is documented by example - see examples section.
filters: ''
2021-04-19 20:18:44 +00:00
# Branch, tag, or commit SHA against which the changes will be detected.
# If it references the same branch it was pushed to,
2020-09-14 15:19:32 +00:00
# changes are detected against the most recent commit before the push.
2021-04-19 20:18:44 +00:00
# Otherwise, it uses git merge-base to find the best common ancestor between
2020-09-14 15:19:32 +00:00
# current branch (HEAD) and base.
# When merge-base is found, it's used for change detection - only changes
2021-04-19 20:18:44 +00:00
# introduced by the current branch are considered.
2020-09-14 15:19:32 +00:00
# All files are considered as added if there is no common ancestor with
# base branch or no previous commit.
# This option is ignored if action is triggered by pull_request event.
# Default: repository default branch (e.g. master)
base: ''
2021-04-11 18:49:05 +00:00
# Git reference (e.g. branch name) from which the changes will be detected.
2021-04-19 20:18:44 +00:00
# Useful when workflow can be triggered only on the default branch (e.g. repository_dispatch event)
# but you want to get changes on a different branch.
2021-04-11 18:49:05 +00:00
# This option is ignored if action is triggered by pull_request event.
# default: ${{ github.ref }}
ref:
2021-04-19 20:18:44 +00:00
# How many commits are initially fetched from the base branch.
2020-09-14 15:19:32 +00:00
# If needed, each subsequent fetch doubles the
# previously requested number of commits until the merge-base
2021-04-19 20:18:44 +00:00
# is found, or there are no more commits in the history.
2020-09-14 15:19:32 +00:00
# This option takes effect only when changes are detected
# using git against base branch (feature branch workflow).
2021-03-08 16:06:12 +00:00
# Default: 100
2020-09-14 15:19:32 +00:00
initial-fetch-depth: ''
# Enables listing of files matching the filter:
# 'none' - Disables listing of matching files (default).
2021-02-20 10:21:30 +00:00
# 'csv' - Coma separated list of filenames.
2021-04-19 20:18:44 +00:00
# If needed, it uses double quotes to wrap filename with unsafe characters.
# 'json' - File paths are formatted as JSON array.
# 'shell' - Space delimited list usable as command-line argument list in Linux shell.
# If needed, it uses single or double quotes to wrap filename with unsafe characters.
# 'escape'- Space delimited list usable as command-line argument list in Linux shell.
2020-12-13 20:07:47 +00:00
# Backslash escapes every potentially unsafe character.
2020-09-14 15:19:32 +00:00
# Default: none
list-files: ''
# Relative path under $GITHUB_WORKSPACE where the repository was checked out.
working-directory: ''
2021-04-19 20:18:44 +00:00
# Personal access token used to fetch a list of changed files
2021-07-08 03:32:59 +00:00
# from GitHub REST API.
2021-04-19 20:18:44 +00:00
# It's only used if action is triggered by a pull request event.
2021-07-08 03:32:59 +00:00
# GitHub token from workflow context is used as default value.
2021-04-19 20:18:44 +00:00
# If an empty string is provided, the action falls back to detect
2020-09-14 15:19:32 +00:00
# changes using git commands.
# Default: ${{ github.token }}
token: ''
```
## Outputs
2021-07-08 03:52:11 +00:00
2021-04-19 20:18:44 +00:00
- For each filter, it sets output variable named by the filter to the text:
2021-07-08 03:52:11 +00:00
- `'true'` - if **any** of changed files matches any of filter rules
- `'false'` - if **none** of changed files matches any of filter rules
2021-04-19 20:18:44 +00:00
- For each filter, it sets an output variable with the name `${FILTER_NAME}_count` to the count of matching files.
- If enabled, for each filter it sets an output variable with the name `${FILTER_NAME}_files` . It will contain a list of all files matching the filter.
- `changes` - JSON array with names of all filters matching any of the changed files.
2020-09-14 15:19:32 +00:00
2021-07-08 03:52:11 +00:00
## Examples
2020-09-14 15:19:32 +00:00
2021-07-08 03:52:11 +00:00
### Conditional execution
2020-09-14 15:19:32 +00:00
< details >
< summary > Execute < b > step< / b > in a workflow job only if some file in a subfolder is changed< / summary >
2020-05-20 15:03:08 +00:00
```yaml
2020-05-20 22:31:39 +00:00
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
2020-09-14 15:19:32 +00:00
- uses: dorny/paths-filter@v2
2020-05-20 22:31:39 +00:00
id: filter
with:
filters: |
backend:
2020-09-14 15:19:32 +00:00
- 'backend/**'
2020-05-20 22:31:39 +00:00
frontend:
2020-09-14 15:19:32 +00:00
- 'frontend/**'
2020-05-20 22:31:39 +00:00
# run only if 'backend' files were changed
2020-09-14 15:19:32 +00:00
- name: backend tests
2020-05-20 22:31:39 +00:00
if: steps.filter.outputs.backend == 'true'
run: ...
# run only if 'frontend' files were changed
2020-09-14 15:19:32 +00:00
- name: frontend tests
2020-05-20 22:31:39 +00:00
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: ...
2020-05-20 15:03:08 +00:00
```
2021-07-08 03:52:11 +00:00
2020-09-14 15:19:32 +00:00
< / details >
< details >
< summary > Execute < b > job< / b > in a workflow only if some file in a subfolder is changed< / summary >
2020-05-20 15:03:08 +00:00
2020-06-24 19:53:31 +00:00
```yml
jobs:
2020-09-14 15:19:32 +00:00
# JOB to run change detection
2020-06-24 19:53:31 +00:00
changes:
runs-on: ubuntu-latest
# Set job outputs to values from filter step
outputs:
backend: ${{ steps.filter.outputs.backend }}
frontend: ${{ steps.filter.outputs.frontend }}
steps:
# For pull requests it's not necessary to checkout the code
2020-09-14 15:19:32 +00:00
- uses: dorny/paths-filter@v2
2020-06-24 19:53:31 +00:00
id: filter
with:
2020-09-14 15:19:32 +00:00
filters: |
backend:
- 'backend/**'
frontend:
- 'frontend/**'
# JOB to build and test backend code
2020-06-24 19:53:31 +00:00
backend:
2020-07-16 10:33:30 +00:00
needs: changes
2020-06-24 19:53:31 +00:00
if: ${{ needs.changes.outputs.backend == 'true' }}
2020-09-14 15:19:32 +00:00
runs-on: ubuntu-latest
2020-06-24 19:53:31 +00:00
steps:
2020-09-14 15:19:32 +00:00
- uses: actions/checkout@v2
2020-06-24 19:53:31 +00:00
- ...
2020-09-14 15:19:32 +00:00
# JOB to build and test frontend code
2020-06-24 19:53:31 +00:00
frontend:
2020-07-16 10:33:30 +00:00
needs: changes
2020-06-24 19:53:31 +00:00
if: ${{ needs.changes.outputs.frontend == 'true' }}
2020-09-14 15:19:32 +00:00
runs-on: ubuntu-latest
2020-06-24 19:53:31 +00:00
steps:
2020-09-14 15:19:32 +00:00
- uses: actions/checkout@v2
2020-06-24 19:53:31 +00:00
- ...
```
2021-07-08 03:52:11 +00:00
2020-09-14 15:19:32 +00:00
< / details >
2020-12-17 21:33:11 +00:00
< details >
< summary > Use change detection to configure matrix job< / summary >
```yaml
jobs:
# JOB to run change detection
changes:
runs-on: ubuntu-latest
outputs:
# Expose matched filters as job 'packages' output variable
packages: ${{ steps.filter.outputs.changes }}
steps:
# For pull requests it's not necessary to checkout the code
- uses: dorny/paths-filter@v2
id: filter
with:
filters: |
package1: src/package1
package2: src/package2
# JOB to build and test each of modified packages
build:
needs: changes
strategy:
matrix:
# Parse JSON array containing names of all filters matching any of changed files
# e.g. ['package1', 'package2'] if both package folders contains changes
2021-02-24 10:24:20 +00:00
package: ${{ fromJSON(needs.changes.outputs.packages) }}
2020-12-17 21:33:11 +00:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- ...
```
2021-07-08 03:52:11 +00:00
2020-12-17 21:33:11 +00:00
< / details >
2021-07-08 03:52:11 +00:00
### Change detection workflows
2020-09-14 15:19:32 +00:00
< details >
< summary > < b > Pull requests:< / b > Detect changes against PR base branch< / summary >
```yaml
on:
pull_request:
2021-04-19 20:18:44 +00:00
branches: # PRs to the following branches will trigger the workflow
2020-09-14 15:19:32 +00:00
- master
- develop
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dorny/paths-filter@v2
id: filter
with:
filters: ... # Configure your filters
```
2021-07-08 03:52:11 +00:00
2020-09-14 15:19:32 +00:00
< / details >
< details >
< summary > < b > Feature branch:< / b > Detect changes against configured base branch< / summary >
```yaml
on:
push:
branches: # Push to following branches will trigger the workflow
- feature/**
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
2020-09-14 16:09:37 +00:00
with:
# This may save additional git fetch roundtrip if
# merge-base is found within latest 20 commits
fetch-depth: 20
2020-09-14 15:19:32 +00:00
- uses: dorny/paths-filter@v2
id: filter
with:
base: develop # Change detection against merge-base with this branch
filters: ... # Configure your filters
```
2021-07-08 03:52:11 +00:00
2020-09-14 15:19:32 +00:00
< / details >
< details >
< summary > < b > Long lived branches:< / b > Detect changes against the most recent commit on the same branch before the push< / summary >
```yaml
on:
push:
2021-04-19 20:18:44 +00:00
branches: # Push to the following branches will trigger the workflow
2020-09-14 15:19:32 +00:00
- master
- develop
- release/**
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dorny/paths-filter@v2
id: filter
with:
2021-04-19 20:18:44 +00:00
# Use context to get the branch where commits were pushed.
# If there is only one long-lived branch (e.g. master),
2020-09-14 15:19:32 +00:00
# you can specify it directly.
# If it's not configured, the repository default branch is used.
base: ${{ github.ref }}
filters: ... # Configure your filters
```
2021-07-08 03:52:11 +00:00
2020-09-14 15:19:32 +00:00
< / details >
2020-11-22 19:59:32 +00:00
< details >
< summary > < b > Local changes:< / b > Detect staged and unstaged local changes< / summary >
```yaml
on:
push:
branches: # Push to following branches will trigger the workflow
- master
- develop
- release/**
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
2021-04-19 20:18:44 +00:00
# Some action that modifies files tracked by git (e.g. code linter)
2020-11-22 19:59:32 +00:00
- uses: johndoe/some-action@v1
# Filter to detect which files were modified
2021-04-19 20:18:44 +00:00
# Changes could be, for example, automatically committed
2020-11-22 19:59:32 +00:00
- uses: dorny/paths-filter@v2
id: filter
with:
base: HEAD
filters: ... # Configure your filters
```
2021-07-08 03:52:11 +00:00
2020-11-22 19:59:32 +00:00
< / details >
2021-07-08 03:52:11 +00:00
### Advanced options
2020-09-14 15:19:32 +00:00
< details >
< summary > Define filter rules in own file< / summary >
```yaml
- uses: dorny/paths-filter@v2
id: filter
with:
# Path to file where filters are defined
filters: .github/filters.yaml
```
2021-07-08 03:52:11 +00:00
2020-09-14 15:19:32 +00:00
< / details >
< details >
< summary > Use YAML anchors to reuse path expression(s) inside another rule< / summary >
```yaml
- uses: dorny/paths-filter@v2
id: filter
with:
# & shared is YAML anchor,
# *shared references previously defined anchor
# src filter will match any path under common, config and src folders
filters: |
shared: & shared
- common/**
- config/**
src:
- *shared
- src/**
```
2021-07-08 03:52:11 +00:00
2020-09-14 15:19:32 +00:00
< / details >
< details >
< summary > Consider if file was added, modified or deleted< / summary >
```yaml
- uses: dorny/paths-filter@v2
id: filter
with:
# Changed file can be 'added', 'modified', or 'deleted'.
2021-04-19 20:18:44 +00:00
# By default, the type of change is not considered.
# Optionally, it's possible to specify it using nested
# dictionary, where the type of change composes the key.
# Multiple change types can be specified using `|` as the delimiter.
2020-09-14 15:19:32 +00:00
filters: |
2020-11-07 01:39:25 +00:00
shared: & shared
- common/**
- config/**
2020-09-14 15:19:32 +00:00
addedOrModified:
- added|modified: '**'
allChanges:
- added|deleted|modified: '**'
2020-11-07 01:39:25 +00:00
addedOrModifiedAnchors:
- added|modified: *shared
2020-09-14 15:19:32 +00:00
```
2021-07-08 03:52:11 +00:00
< / details >
2020-09-14 15:19:32 +00:00
2021-07-08 03:52:11 +00:00
### Custom processing of changed files
2020-09-14 15:19:32 +00:00
< details >
< summary > Passing list of modified files as command line args in Linux shell< / summary >
```yaml
- uses: dorny/paths-filter@v2
id: filter
with:
# Enable listing of files matching each filter.
# Paths to files will be available in `${FILTER_NAME}_files` output variable.
# Paths will be escaped and space-delimited.
2021-04-19 20:18:44 +00:00
# Output is usable as command-line argument list in Linux shell
2020-09-14 15:19:32 +00:00
list-files: shell
# In this example changed files will be checked by linter.
# It doesn't make sense to lint deleted files.
# Therefore we specify we are only interested in added or modified files.
filters: |
markdown:
- added|modified: '*.md'
- name: Lint Markdown
if: ${{ steps.filter.outputs.markdown == 'true' }}
run: npx textlint ${{ steps.filter.outputs.markdown_files }}
```
2021-07-08 03:52:11 +00:00
2020-09-14 15:19:32 +00:00
< / details >
< details >
< summary > Passing list of modified files as JSON array to another action< / summary >
```yaml
- uses: dorny/paths-filter@v2
id: filter
with:
# Enable listing of files matching each filter.
# Paths to files will be available in `${FILTER_NAME}_files` output variable.
# Paths will be formatted as JSON array
list-files: json
2021-04-19 20:18:44 +00:00
# In this example all changed files are passed to the following action to do
2020-09-14 15:19:32 +00:00
# some custom processing.
filters: |
changed:
- '**'
- name: Lint Markdown
uses: johndoe/some-action@v1
with:
2020-11-03 08:23:07 +00:00
files: ${{ steps.filter.outputs.changed_files }}
2020-09-14 15:19:32 +00:00
```
2021-07-08 03:52:11 +00:00
2020-09-14 15:19:32 +00:00
< / details >
2021-07-08 03:52:11 +00:00
## See also
2021-02-01 20:58:39 +00:00
- [test-reporter ](https://github.com/dorny/test-reporter ) - Displays test results from popular testing frameworks directly in GitHub
2020-09-14 15:19:32 +00:00
2021-07-08 03:52:11 +00:00
## License
2020-06-24 19:53:31 +00:00
2020-09-14 15:19:32 +00:00
The scripts and documentation in this project are released under the [MIT License ](https://github.com/dorny/paths-filter/blob/master/LICENSE )