We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
CODEQL_ACTION_TEST_MODE
1 parent 9a0fe9e commit b77ebbeCopy full SHA for b77ebbe
1 file changed
pr-checks/sync.ts
@@ -205,6 +205,11 @@ function main(): void {
205
}
206
207
208
+ checkJob.env = checkJob.env ?? {};
209
+ if (!("CODEQL_ACTION_TEST_MODE" in checkJob.env)) {
210
+ checkJob.env.CODEQL_ACTION_TEST_MODE = true;
211
+ }
212
+
213
let extraGroupName = "";
214
for (const inputName of Object.keys(workflowInputs)) {
215
extraGroupName += "-${{inputs." + inputName + "}}";
0 commit comments