Skip to content

Commit

Permalink
Fix wording
Browse files Browse the repository at this point in the history
  • Loading branch information
kachick committed May 31, 2024
1 parent 60aad86 commit 5a5f356
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32585,7 +32585,7 @@ async function run() {
if (ok) {
(0, import_core3.info)(colorize("notice", "all jobs passed"));
} else {
(0, import_core3.setFailed)(colorize("error", "failed to wait for success"));
(0, import_core3.setFailed)(colorize("error", "failed to wait for job success"));
}
break;
}
Expand Down
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ async function run(): Promise<void> {
if (ok) {
info(colorize('notice', 'all jobs passed'));
} else {
setFailed(colorize('error', 'failed to wait for success'));
setFailed(colorize('error', 'failed to wait for job success'));
}

break;
Expand Down

0 comments on commit 5a5f356

Please sign in to comment.