Skip to content

Commit 72986c4

Browse files
committed
Add actionlint supression rules
1 parent 7977ece commit 72986c4

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

.github/actionlint.yaml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
self-hosted-runner:
2+
# Labels of self-hosted runner in array of strings.
3+
labels: []
4+
5+
# Configuration variables in array of strings defined in your repository or
6+
# organization. `null` means disabling configuration variables check.
7+
# Empty array means no configuration variable is allowed.
8+
config-variables: []
9+
10+
# Configuration for file paths. The keys are glob patterns to match to file
11+
# paths relative to the repository root. The values are the configurations for
12+
# the file paths. Note that the path separator is always '/'.
13+
# The following configurations are available.
14+
#
15+
# "ignore" is an array of regular expression patterns. Matched error messages
16+
# are ignored. This is similar to the "-ignore" command line option.
17+
paths:
18+
.github/workflows/*.yaml:
19+
ignore:
20+
- 'file "/entrypoints/.*\.sh" does not exist'
21+
- 'property "output_string" is not defined in object type'
22+
- 'property "my.*" is not defined in object type'
23+
- 'property "from_.*" is not defined in object type'
24+
- 'property "complex_output" is not defined in object type'
25+
- 'property "v" is not defined in object type'
26+
- 'property "test" is not defined in object type'
27+
- 'property "default" is not defined in object type'
28+
- 'property "len" is not defined in object type'
29+
- 'property "https" is not defined in object type'
30+
- 'property "git_https" is not defined in object type'
31+
- 'property "awkward_.*" is not defined in object type'
32+
- 'property "word" is not defined in object type'
33+
.github/workflows/test-target-replace.yaml:
34+
ignore:
35+
- 'property "count" is not defined in object type'
36+
- 'property "foreach" is not defined in object type'
37+
.github/workflows/release.yaml:
38+
ignore:
39+
- 'Useless cat.'
40+
.github/workflows/test-version.yaml:
41+
ignore:
42+
- 'property "random" is not defined in object type'
43+
- 'property "acme" is not defined in object type'

0 commit comments

Comments
 (0)