Merge pull request #2598 from github/mbg/fix/validateWorkflowResult

Log result of `validateWorkflow` if not `undefined`
This commit is contained in:
Michael B. Gale 2024-11-14 17:05:40 +00:00 committed by GitHub
commit a1695c562b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 12 additions and 3 deletions

View file

@ -329,8 +329,13 @@ async function run() {
zstdAvailability = initCodeQLResult.zstdAvailability;
core.startGroup("Validating workflow");
if ((await validateWorkflow(codeql, logger)) === undefined) {
const validateWorkflowResult = await validateWorkflow(codeql, logger);
if (validateWorkflowResult === undefined) {
logger.info("Detected no issues with the code scanning workflow.");
} else {
logger.warning(
`Unable to validate code scanning workflow: ${validateWorkflowResult}`,
);
}
core.endGroup();