We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
env
container
services
1 parent b77ebbe commit c889588Copy full SHA for c889588
1 file changed
pr-checks/sync.ts
@@ -204,6 +204,11 @@ function main(): void {
204
checkJob.permissions = checkSpecification.permissions;
205
}
206
207
+ for (const key of ["env", "container", "services"] as const) {
208
+ if (checkSpecification[key] !== undefined) {
209
+ checkJob[key] = checkSpecification[key];
210
+ }
211
212
213
checkJob.env = checkJob.env ?? {};
214
if (!("CODEQL_ACTION_TEST_MODE" in checkJob.env)) {
0 commit comments