2020-06-15 19:49:10 +00:00
|
|
|
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:
|
2020-05-26 15:16:09 +00:00
|
|
|
token:
|
2020-05-20 23:37:33 +00:00
|
|
|
description: 'GitHub Access Token'
|
2020-05-26 15:16:09 +00:00
|
|
|
required: false
|
2020-05-24 19:17:51 +00:00
|
|
|
default: ${{ github.token }}
|
2020-06-24 19:53:31 +00:00
|
|
|
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:
|
2020-05-24 20:50:33 +00:00
|
|
|
description: 'Path to the configuration file or YAML string with filters definition'
|
2020-05-20 22:31:39 +00:00
|
|
|
required: true
|
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
|