-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
72 lines (56 loc) · 1.71 KB
/
action.yml
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
name: Side effect changed files
description: GitHub Actions to trigger side effect based on changed files
author: KeisukeYamashita
branding:
icon: radio
color: gray-dark
inputs:
bypass:
description: Bypass the check and outputs for the matching files.
required: false
dir_names:
description: Output unique changed directories instead of filenames.
required: true
default: "false"
escape_json:
description: Escape JSON special characters.
required: false
default: "false"
files:
description: Files to check for the side effects.
required: true
filters:
description: Filter the results with glob pattern.
required: false
include:
description: Include the result glob pattern to match the inputs.
required: false
json:
description: Output files in JSON format.
required: false
default: "false"
mapping:
description: Mapping of the files and its side effects. If you specify `mapping_file` field, it will be merged with the mapping.
required: false
mapping_file:
description: Mapping file of the files and its side effects. If you specify `mapping` field, it will be merged with the mapping.
required: true
default: ".github/side-effect.yml"
matrix:
description: Output files in a format that can be used for GitHub Action's matrix strategy.
required: false
default: "false"
merge:
description: Merge the files and its side effects.
required: false
default: "false"
outputs:
changed:
description: Boolean value indicating whether the files have changed.
files:
description: List of changed files.
files_count:
description: Number of the files.
runs:
using: node20
main: dist/index.js