mirror of
https://github.com/dorny/paths-filter.git
synced 2024-11-13 17:28:13 +00:00
17 lines
529 B
YAML
17 lines
529 B
YAML
name: 'Pull request changed files filter'
|
|
description: 'Enables conditional execution of workflow job steps considering which files are modified by a pull request.'
|
|
author: 'Michal Dorner <dorner.michal@gmail.com>'
|
|
inputs:
|
|
token:
|
|
description: 'GitHub Access Token'
|
|
required: false
|
|
default: ${{ github.token }}
|
|
filters:
|
|
description: 'Path to the configuration file or YAML string with filters definition'
|
|
required: true
|
|
runs:
|
|
using: 'node12'
|
|
main: 'dist/index.js'
|
|
branding:
|
|
color: blue
|
|
icon: filter |