Skip to content

Commit

Permalink
Fix build break
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Nied <[email protected]>
  • Loading branch information
peternied committed Dec 6, 2023
1 parent 73dfc9b commit 1560bc4
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 @@ -36750,7 +36750,7 @@ async function run() {

pullRequestApprovers = approvers;
} else {
pullRequestApprovers = mockApprovers.split(' ');
pullRequestApprovers = mockApproversString.split(' ');
}

const acceptedApprovers = [];
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ async function run() {

pullRequestApprovers = approvers;
} else {
pullRequestApprovers = mockApprovers.split(' ');
pullRequestApprovers = mockApproversString.split(' ');
}

const acceptedApprovers = [];
Expand Down

0 comments on commit 1560bc4

Please sign in to comment.