We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c889588 commit b948e56Copy full SHA for b948e56
pr-checks/sync.ts
@@ -183,6 +183,17 @@ function main(): void {
183
}
184
185
186
+
187
+ // Construct the workflow steps needed for this check.
188
+ const steps: any[] = [
189
+ {
190
+ name: "Check out repository",
191
+ uses: "actions/checkout@v6",
192
+ },
193
+ ];
194
195
+ steps.push(...checkSpecification.steps);
196
197
const checkJob: Record<string, any> = {
198
strategy: {
199
"fail-fast": false,
@@ -198,6 +209,7 @@ function main(): void {
209
},
210
"timeout-minutes": 45,
200
211
"runs-on": "${{ matrix.os }}",
212
+ steps,
201
213
};
202
214
203
215
if (checkSpecification.permissions) {
0 commit comments