Skip to content

Commit 53bed11

Browse files
Apply suggestions from code review
Co-authored-by: Henry Mercer <[email protected]>
1 parent ab81590 commit 53bed11

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/autobuild.ts

+3-4
Original file line numberDiff line numberDiff line change
@@ -117,15 +117,14 @@ async function setupCppAutobuild(codeql: CodeQL, logger: Logger) {
117117
process.env["RUNNER_ENVIRONMENT"] === "self-hosted" &&
118118
process.env[envVar] !== "true"
119119
) {
120-
logger.info(`Disabling ${featureName} as we are on a self-hosted runner`);
121-
logger.info(`This can be enabled by setting ${envVar}: true in the env`);
120+
logger.info(`Disabling ${featureName} as we are on a self-hosted runner.` + getWorkflowEventName() !== "dynamic" ? ` To override this, set the ${envVar} environment variable to 'true' in your workflow (see https://docs.github.com/en/actions/learn-github-actions/variables#defining-environment-variables-for-a-single-workflow).` : "");
122121
core.exportVariable(envVar, "false");
123122
} else {
124-
logger.info(`Enabling ${featureName}`);
123+
logger.info(`Enabling ${featureName}. This can be disabled by setting the ${envVar} environment variable to 'false' (see https://docs.github.com/en/actions/learn-github-actions/variables#defining-environment-variables-for-a-single-workflow).`);
125124
core.exportVariable(envVar, "true");
126125
}
127126
} else {
128-
logger.info(`Disabling ${featureName}`);
127+
logger.info(`Disabling ${featureName}.`);
129128
core.exportVariable(envVar, "false");
130129
}
131130
}

0 commit comments

Comments
 (0)