Disambiguate report messages

This commit is contained in:
Simon Engledew
2021-01-22 09:40:26 +00:00
parent 795b1923ec
commit 8a9922df92
3 changed files with 7 additions and 7 deletions

View File

@@ -327,12 +327,12 @@ export async function validateWorkflow(): Promise<undefined | string> {
core.warning(formatWorkflowErrors(workflowErrors));
}
return formatWorkflowCause(workflowErrors);
return `warning: ${formatWorkflowCause(workflowErrors)}`;
} catch (e) {
return `getWorkflowErrors() failed: ${e.toString()}`;
return `error: getWorkflowErrors() failed: ${e.toString()}`;
}
} catch (e) {
return `getWorkflow() failed: ${e.toString()}`;
return `error: getWorkflow() failed: ${e.toString()}`;
}
}