mirror of
https://github.com/github/codeql-action.git
synced 2026-05-03 04:10:10 +00:00
Send short codes that do not need URL encoding for better splunk tracing
This commit is contained in:
+4
-4
@@ -96,10 +96,10 @@ async function run() {
|
||||
try {
|
||||
actionsUtil.prepareLocalRunEnvironment();
|
||||
|
||||
const workflowError = await actionsUtil.getWorkflowError();
|
||||
const workflowErrors = await actionsUtil.getWorkflowErrors();
|
||||
|
||||
if (workflowError !== undefined) {
|
||||
core.warning(workflowError);
|
||||
if (workflowErrors !== undefined) {
|
||||
core.warning(actionsUtil.formatWorkflowErrors(workflowErrors));
|
||||
}
|
||||
|
||||
if (
|
||||
@@ -108,7 +108,7 @@ async function run() {
|
||||
"init",
|
||||
"starting",
|
||||
startedAt,
|
||||
workflowError
|
||||
actionsUtil.formatWorkflowCause(workflowErrors)
|
||||
)
|
||||
))
|
||||
) {
|
||||
|
||||
Reference in New Issue
Block a user