Change skipped reason message

This commit is contained in:
Michael B. Gale
2026-02-24 16:55:37 +00:00
parent e9ce32d807
commit 56d1ccc87a
3 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -309,7 +309,7 @@ test("not uploading failed SARIF when `code-scanning` is not an enabled analysis
});
t.is(
result.upload_failed_run_skipped_because,
"Code Scanning is not enabled.",
"No analysis kind that supports failed SARIF uploads is enabled.",
);
});
+2 -1
View File
@@ -159,7 +159,8 @@ export async function tryUploadSarifIfRunFailed(
);
} else {
return {
upload_failed_run_skipped_because: "Code Scanning is not enabled.",
upload_failed_run_skipped_because:
"No analysis kind that supports failed SARIF uploads is enabled.",
};
}
} catch (e) {