name: 'Paths filter' description: 'Execute your workflow steps only if relevant files are modified.' author: 'Michal Dorner ' inputs: token: description: 'GitHub Access Token' required: false default: ${{ github.token }} working-directory: description: 'Relative path under $GITHUB_WORKSPACE where the repository was checked out.' required: false base: description: | Git reference (e.g. branch name) against which the changes will be detected. Defaults to repository default branch (e.g. master). If it references same branch it was pushed to, changes are detected against the most recent commit before the push. This option is ignored if action is triggered by pull_request event. required: false filters: description: 'Path to the configuration file or YAML string with filters definition' required: false list-files: description: | Enables listing of files matching the filter: 'none' - Disables listing of matching files (default). 'json' - Matching files paths are serialized as JSON array. 'shell' - Matching files paths are escaped and space-delimited. Output is usable as command line argument list in linux shell. required: false default: none runs: using: 'node12' main: 'dist/index.js' branding: color: blue icon: filter