-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
45 lines (45 loc) · 1.54 KB
/
Copy pathaction.yml
File metadata and controls
45 lines (45 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: 'Faster Changed Files Action'
description: 'A fast way to get changed files github action'
branding:
icon: file-text
color: purple
inputs:
github-token:
description: "The github token, for the most part you can just use secrets.GITHUB_TOKEN"
required: true
ignore_file_patterns:
description: "a newline separated list of regex paths to ignore"
required: false
default: ''
only_file_patterns:
description: "a newline separated list of regex paths to only consider"
required: false
default: ''
filter_by_status:
description: "a newline separated list of status to filter by, options are: added,removed,modified,renamed,copied,changed,unchanged"
required: false
default: ''
separator:
description: "the separator to use on output"
required: false
default: ','
outputs:
all_changed_files:
description: "a list of changed file paths using the separator"
only_deleted:
description: "a list of only deleted file paths using the separator"
only_modified:
description: "a list of only modified file paths using the separator"
only_added:
description: "a list of only added file paths using the separator"
any_changed:
description: '"true" if any files were modified'
any_added:
description: '"true" if any files were marked with "added" status'
any_modified:
description: '"true" if any files were marked with "modified" status'
any_deleted:
description: '"true" if any files were marked with "deleted" status'
runs:
using: 'node20'
main: 'dist/index.js'