From 95feb25a39dcbd598887f4da9c604284d65ae725 Mon Sep 17 00:00:00 2001 From: Peter Nied Date: Thu, 7 Dec 2023 11:20:48 -0600 Subject: [PATCH] More debugging statements Signed-off-by: Peter Nied --- dist/index.js | 1 + index.js | 1 + 2 files changed, 2 insertions(+) diff --git a/dist/index.js b/dist/index.js index 0f20523..0f2d902 100644 --- a/dist/index.js +++ b/dist/index.js @@ -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); diff --git a/index.js b/index.js index 897961d..59a4d9a 100644 --- a/index.js +++ b/index.js @@ -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);