-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathaction.yml
More file actions
143 lines (142 loc) · 3.69 KB
/
action.yml
File metadata and controls
143 lines (142 loc) · 3.69 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
name: "Chef: Lints"
branding:
icon: "shield"
color: "gray-dark"
description: "Caching modules from PSRepositories"
inputs:
chef-data_bags-deploy:
description: ""
required: false
default: "false"
ci-cd:
description: ""
required: false
default: "false"
cookstyle-lint:
description: ""
required: false
default: "false"
json-lint:
description: ""
required: false
default: "false"
markdown-lint:
description: ""
required: false
default: "false"
packer-lint:
description: ""
required: false
default: "false"
python-lint:
description: ""
required: false
default: "false"
terraform-apply:
description: ""
required: false
default: "false"
terraform-plan:
description: ""
required: false
default: "false"
yaml-lint:
description: ""
required: false
default: "false"
chef-policyfiles-deploy:
description: ""
required: false
default: "false"
cookbook-supermarket-deploy:
description: ""
required: false
default: "false"
javascript-lint:
description: ""
required: false
default: "false"
markdown-link-checker:
description: ""
required: false
default: "false"
packer-iso-url-checker:
description: ""
required: false
default: "false"
powershell-lint:
description: ""
required: false
default: "false"
shellcheck-lint:
description: ""
required: false
default: "false"
terraform-lint:
description: ""
required: false
default: "false"
xml-lint:
description: ""
required: false
default: "false"
runs:
using: "composite"
steps:
- id: chef-data_bags-deploy
if: inputs.chef-data_bags-deploy
uses: ./.github/workflows/chef-data_bags-deploy.yml
- id: ci-cd
if: inputs.ci-cd
uses: ./.github/workflows/ci-cd.yml
- id: cookstyle-lint
if: inputs.cookstyle-lint
uses: ./.github/workflows/cookstyle-lint.yml
- id: json-lint
if: inputs.json-lint
uses: ./.github/workflows/json-lint.yml
- id: markdown-lint
if: inputs.markdown-lint
uses: ./.github/workflows/markdown-lint.yml
- id: packer-lint
if: inputs.packer-lint
uses: ./.github/workflows/packer-lint.yml
- id: python-lint
if: inputs.python-lint
uses: ./.github/workflows/python-lint.yml
- id: terraform-apply
if: inputs.terraform-apply
uses: ./.github/workflows/terraform-apply.yml
- id: terraform-plan
if: inputs.terraform-plan
uses: ./.github/workflows/terraform-plan.yml
- id: yaml-lint
if: inputs.yaml-lint
uses: ./.github/workflows/yaml-lint.yml
- id: chef-policyfiles-deploy
if: inputs.chef-policyfiles-deploy
uses: ./.github/workflows/chef-policyfiles-deploy.yml
- id: cookbook-supermarket-deploy
if: inputs.cookbook-supermarket-deploy
uses: ./.github/workflows/cookbook-supermarket-deploy.yml
- id: javascript-lint
if: inputs.javascript-lint
uses: ./.github/workflows/javascript-lint.yml
- id: markdown-link-checker
if: inputs.markdown-link-checker
uses: ./.github/workflows/markdown-link-checker.yml
- id: packer-iso-url-checker
if: inputs.packer-iso-url-checker
uses: ./.github/workflows/packer-iso-url-checker.yml
- id: powershell-lint
if: inputs.powershell-lint
uses: ./.github/workflows/powershell-lint.yml
- id: shellcheck-lint
if: inputs.shellcheck-lint
uses: ./.github/workflows/shellcheck-lint.yml
- id: terraform-lint
if: inputs.terraform-lint
uses: ./.github/workflows/terraform-lint.yml
- id: xml-lint
if: inputs.xml-lint
uses: ./.github/workflows/xml-lint.yml