From a0d43a6031cbd9172a1d56ae6b49189b7714171a Mon Sep 17 00:00:00 2001 From: Aaron Klinker Date: Sun, 21 Jan 2024 19:00:13 -0600 Subject: [PATCH] Add store name tag to improve concurrent output in CI --- src/submit.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/submit.ts b/src/submit.ts index fd89459..1633db8 100644 --- a/src/submit.ts +++ b/src/submit.ts @@ -62,7 +62,7 @@ export async function submit(config: InlineConfig): Promise { async task(_ctx, task) { try { const setStatus = (text: string) => { - task.output = text; + task.output = `[${name}] ${text}`; }; const store = getStore(setStatus);