Skip to content

Commit 0c87d55

Browse files
authored
Improve error message formatting
1 parent 5b0d24d commit 0c87d55

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,12 +186,12 @@ async function run() {
186186
return;
187187
}
188188
} catch (e) {
189-
core.setFailed(`Action failed with error ${e.statusText}`);
189+
core.setFailed(`Action failed with error: ${e.statusText}`);
190190
}
191191

192192
});
193193
} catch (e) {
194-
core.setFailed(`Action failed with error ${e.statusText}`);
194+
core.setFailed(`Action failed with error: ${e.statusText}`);
195195
}
196196
})).then(() => {
197197
if (isReportSupported()) {

0 commit comments

Comments
 (0)