Skip to content

Commit 2478e4d

Browse files
committed
emoji
1 parent 7c8f389 commit 2478e4d

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

dist/index.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,12 @@ for (const file of readdirRecursively(".")) {
5555

5656
const compileResult = (() => {
5757
const warningMatch = compilationOutput.match(/warning( .\d+)?:/);
58-
if (warningMatch && warningMatch.length > 0) return "warning";
58+
if (warningMatch && warningMatch.length > 0) return "⚠️warning";
5959

6060
const errorMatch = compilationOutput.match(/error( .\d+)?:/);
61-
if (errorMatch && errorMatch.length > 0) return "error";
61+
if (errorMatch && errorMatch.length > 0) return "error";
6262

63-
return "success";
63+
return "success";
6464
})();
6565

6666
const { data: job } = await octokit.rest.actions.getJobForWorkflowRun({

0 commit comments

Comments
 (0)