Skip to content

Commit

Permalink
sync dist with code again
Browse files Browse the repository at this point in the history
  • Loading branch information
domi2120 committed Oct 13, 2022
1 parent e03fde3 commit 1c368a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9602,7 +9602,7 @@ function run() {
core.debug(`Run SHA: ${run.head_sha}`);
core.debug(`Run Branch: ${run.head_branch}`);
core.debug(`Wanted branch: ${inputs.branch}`);
if (!inputs.branch || run.head_branch !== inputs.branch) {
if (inputs.branch && run.head_branch !== inputs.branch) {
continue;
}
if (inputs.verify && !(yield verifyCommit(run.head_sha))) {
Expand Down

0 comments on commit 1c368a2

Please sign in to comment.