Always wait for processing when uploading a failed SARIF file

This commit is contained in:
Henry Mercer 2022-11-29 16:27:04 +00:00
parent e628ee0ae1
commit 00a3c456fb
7 changed files with 10 additions and 54 deletions

View file

@ -410,29 +410,6 @@ export function getUploadInputOrThrow(
);
}
/**
* Makes a best effort attempt to retrieve the wait-for-processing input for the
* particular job, given a set of matrix variables.
*
* @returns the wait-for-processing input
* @throws an error if the wait-for-processing input could not be determined
*/
export function getWaitForProcessingInputOrThrow(
workflow: Workflow,
jobName: string,
matrixVars: { [key: string]: string } | undefined
): string {
return (
getInputOrThrow(
workflow,
jobName,
"github/codeql-action/analyze",
"wait-for-processing",
matrixVars
) || "true" // if unspecified, wait-for-processing defaults to true
);
}
/**
* Makes a best effort attempt to retrieve the checkout_path input for the
* particular job, given a set of matrix variables.