Skip to content

Commit

Permalink
fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
the-wright-jamie committed Mar 29, 2024
1 parent b8fbbe6 commit 74e2485
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9836,7 +9836,7 @@ async function run() {
if (errorOnFail) {
core.setFailed(message);
} else {
core.warn(message);
core.notice(message);
}
return;
}
Expand All @@ -9859,7 +9859,7 @@ async function run() {
if (errorOnFail) {
core.setFailed(message);
} else {
core.warn(message);
core.notice(message);
}
return;
}
Expand All @@ -9883,7 +9883,7 @@ async function run() {
if (errorOnFail) {
core.setFailed("Head branch name does not match given regex");
} else {
core.warn("Head branch name does not match given regex");
core.notice("Head branch name does not match given regex");
}
return;
}
Expand Down
6 changes: 3 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ async function run() {
if (errorOnFail) {
core.setFailed(message);
} else {
core.warn(message);
core.notice(message);
}
return;
}
Expand All @@ -68,7 +68,7 @@ async function run() {
if (errorOnFail) {
core.setFailed(message);
} else {
core.warn(message);
core.notice(message);
}
return;
}
Expand All @@ -92,7 +92,7 @@ async function run() {
if (errorOnFail) {
core.setFailed("Head branch name does not match given regex");
} else {
core.warn("Head branch name does not match given regex");
core.notice("Head branch name does not match given regex");
}
return;
}
Expand Down

0 comments on commit 74e2485

Please sign in to comment.