141
141
default : " \"\" "
142
142
type : string
143
143
required : false
144
+ health_yaml_name :
145
+ description : The name of the workflow file.
146
+ default : ' ""'
147
+ type : string
148
+ required : false
144
149
145
150
jobs :
146
151
changelog :
@@ -156,6 +161,7 @@ jobs:
156
161
ignore_changelog : ${{ inputs.ignore_changelog }}
157
162
ignore_packages : ${{ inputs.ignore_packages }}
158
163
checkout_submodules : ${{ inputs.checkout_submodules }}
164
+ health_yaml_name : ${{ inputs.health_yaml_name }}
159
165
160
166
license :
161
167
if : ${{ contains(inputs.checks, 'license') }}
@@ -170,6 +176,7 @@ jobs:
170
176
ignore_license : ${{ inputs.ignore_license }}
171
177
ignore_packages : ${{ inputs.ignore_packages }}
172
178
checkout_submodules : ${{ inputs.checkout_submodules }}
179
+ health_yaml_name : ${{ inputs.health_yaml_name }}
173
180
174
181
coverage :
175
182
if : ${{ contains(inputs.checks, 'coverage') }}
@@ -187,6 +194,7 @@ jobs:
187
194
ignore_packages : ${{ inputs.ignore_packages }}
188
195
checkout_submodules : ${{ inputs.checkout_submodules }}
189
196
experiments : ${{ inputs.experiments }}
197
+ health_yaml_name : ${{ inputs.health_yaml_name }}
190
198
191
199
breaking :
192
200
if : ${{ contains(inputs.checks, 'breaking') }}
@@ -201,6 +209,7 @@ jobs:
201
209
ignore_breaking : ${{ inputs.ignore_breaking }}
202
210
ignore_packages : ${{ inputs.ignore_packages }}
203
211
checkout_submodules : ${{ inputs.checkout_submodules }}
212
+ health_yaml_name : ${{ inputs.health_yaml_name }}
204
213
205
214
do-not-submit :
206
215
if : ${{ contains(inputs.checks, 'do-not-submit') }}
@@ -215,6 +224,7 @@ jobs:
215
224
ignore_donotsubmit : ${{ inputs.ignore_donotsubmit }}
216
225
ignore_packages : ${{ inputs.ignore_packages }}
217
226
checkout_submodules : ${{ inputs.checkout_submodules }}
227
+ health_yaml_name : ${{ inputs.health_yaml_name }}
218
228
219
229
leaking :
220
230
if : ${{ contains(inputs.checks, 'leaking') }}
@@ -229,6 +239,7 @@ jobs:
229
239
ignore_leaking : ${{ inputs.ignore_leaking }}
230
240
ignore_packages : ${{ inputs.ignore_packages }}
231
241
checkout_submodules : ${{ inputs.checkout_submodules }}
242
+ health_yaml_name : ${{ inputs.health_yaml_name }}
232
243
233
244
comment :
234
245
needs : [changelog, license, coverage, breaking, do-not-submit, leaking]
0 commit comments