-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpinact.json
53 lines (53 loc) · 1.36 KB
/
pinact.json
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
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://github.com/suzuki-shunsuke/pinact/pkg/controller/run/config",
"$ref": "#/$defs/Config",
"$defs": {
"Config": {
"properties": {
"files": {
"items": {
"$ref": "#/$defs/File"
},
"type": "array",
"description": "Target files. If files are passed via positional command line arguments"
},
"ignore_actions": {
"items": {
"$ref": "#/$defs/IgnoreAction"
},
"type": "array",
"description": "Actions and reusable workflows that pinact ignores"
}
},
"additionalProperties": false,
"type": "object"
},
"File": {
"properties": {
"pattern": {
"type": "string",
"description": "A regular expression of target files. If files are passed via positional command line arguments"
}
},
"additionalProperties": false,
"type": "object",
"required": [
"pattern"
]
},
"IgnoreAction": {
"properties": {
"name": {
"type": "string",
"description": "Action and reusable workflow names that pinact ignores"
}
},
"additionalProperties": false,
"type": "object",
"required": [
"name"
]
}
}
}