Disambiguate report messages

This commit is contained in:
Simon Engledew 2021-01-22 09:40:26 +00:00
parent 795b1923ec
commit 8a9922df92
No known key found for this signature in database
GPG key ID: 84302E7B02FE8BCE
3 changed files with 7 additions and 7 deletions

6
lib/actions-util.js generated
View file

@ -270,14 +270,14 @@ async function validateWorkflow() {
if (workflowErrors.length > 0) {
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()}`;
}
}
exports.validateWorkflow = validateWorkflow;

File diff suppressed because one or more lines are too long

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()}`;
}
}