paths-filter/action.yml

43 lines
1.7 KiB
YAML
Raw Normal View History

name: 'Paths filter'
description: 'Execute your workflow steps only if relevant files are modified.'
2020-05-20 22:31:39 +00:00
author: 'Michal Dorner <dorner.michal@gmail.com>'
2020-05-20 15:03:08 +00:00
inputs:
token:
description: 'GitHub Access Token'
required: false
default: ${{ github.token }}
2020-07-02 20:56:14 +00:00
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
2020-05-20 22:31:39 +00:00
filters:
description: 'Path to the configuration file or YAML string with filters definition'
required: true
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: true
default: none
initial-fetch-depth:
description: |
How many commits are initially fetched from base branch.
If needed, each subsequent fetch doubles the previously requested number of commits
until the merge-base is found or there are no more commits in the history.
This option takes effect only when changes are detected using git against different base branch.
required: false
default: '10'
2020-05-20 15:03:08 +00:00
runs:
using: 'node12'
main: 'dist/index.js'
2020-05-20 22:31:39 +00:00
branding:
color: blue
icon: filter