-
-
Notifications
You must be signed in to change notification settings - Fork 169
Expand file tree
/
Copy pathactionlint.yaml
More file actions
53 lines (51 loc) · 2.36 KB
/
actionlint.yaml
File metadata and controls
53 lines (51 loc) · 2.36 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
46
47
48
49
50
51
52
53
self-hosted-runner:
# Labels of self-hosted runner in array of strings.
labels: []
# Configuration variables in array of strings defined in your repository or
# organization. `null` means disabling configuration variables check.
# Empty array means no configuration variable is allowed.
config-variables: []
# Configuration for file paths. The keys are glob patterns to match to file
# paths relative to the repository root. The values are the configurations for
# the file paths. Note that the path separator is always '/'.
# The following configurations are available.
#
# "ignore" is an array of regular expression patterns. Matched error messages
# are ignored. This is similar to the "-ignore" command line option.
paths:
.github/workflows/*.yaml:
ignore:
- 'file "/entrypoints/.*\.sh" does not exist'
- 'property "output_string" is not defined in object type'
- 'property "my.*" is not defined in object type'
- 'property "from_.*" is not defined in object type'
- 'property "complex_output" is not defined in object type'
- 'property "v" is not defined in object type'
- 'property "test" is not defined in object type'
- 'property "default" is not defined in object type'
- 'property "len" is not defined in object type'
- 'property "https" is not defined in object type'
- 'property "git_https" is not defined in object type'
- 'property "awkward_.*" is not defined in object type'
- 'property "word" is not defined in object type'
- 'property "all_vars" is not defined in object type'
.github/workflows/test-target-replace-exclude.yaml:
ignore:
- 'property "count" is not defined in object type'
- 'property "foreach" is not defined in object type'
- 'property "keep_me" is not defined in object type'
- 'property "exclude_me" is not defined in object type'
- 'property "also_exclude" is not defined in object type'
.github/workflows/release.yaml:
ignore:
- 'Useless cat.'
.github/workflows/test-version.yaml:
ignore:
- 'property "random" is not defined in object type'
- 'property "acme" is not defined in object type'
.github/workflows/test-apply.yaml:
ignore:
- 'input "var" is not defined in action "terraform-apply"'
.github/workflows/test-plan.yaml:
ignore:
- 'input "var" is not defined in action "terraform-plan"'