Skip to content

Commit

Permalink
More debugging statements
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Nied <[email protected]>
  • Loading branch information
peternied committed Dec 7, 2023
1 parent 1560bc4 commit 95feb25
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -36733,6 +36733,7 @@ async function run() {
const requiredApprovers = core.getInput('required-approvers-list', { required: true })?.split(',').map(s => s.trim()).filter(a => a.length != 0);
const mockApproversString = core.getInput('mock-approvers', { required: false, trimWhitespace: false });

console.log(`mockApproversString: '${mockApproversString}'`);
let pullRequestApprovers;
if (mockApproversString !== "") {
const client = github.getOctokit(token);
Expand Down
1 change: 1 addition & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ async function run() {
const requiredApprovers = core.getInput('required-approvers-list', { required: true })?.split(',').map(s => s.trim()).filter(a => a.length != 0);
const mockApproversString = core.getInput('mock-approvers', { required: false, trimWhitespace: false });

console.log(`mockApproversString: '${mockApproversString}'`);
let pullRequestApprovers;
if (mockApproversString !== "") {
const client = github.getOctokit(token);
Expand Down

0 comments on commit 95feb25

Please sign in to comment.