Disambiguate report messages
This commit is contained in:
parent
795b1923ec
commit
8a9922df92
3 changed files with 7 additions and 7 deletions
|
|
@ -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()}`;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue