From 6f65eaf0d364143d5ccb47e39edfc14f03652e6e Mon Sep 17 00:00:00 2001 From: Philipp Horstenkamp Date: Sun, 19 Nov 2023 13:47:48 +0100 Subject: [PATCH] Added even more debug messages. --- index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/index.js b/index.js index 9d34a54..e65a181 100644 --- a/index.js +++ b/index.js @@ -48,6 +48,8 @@ async function getAndPostPullRequests() { // core.info(`GET repsonse ${JSON.stringify(pulls, 2)}`); // Logic to decide if a POST request is needed + core.info(branch); + core.info(base_branch); const targetPRFound = _.any( pulls, (pr) => pr.head.ref === branch && pr.base.ref === base_branch,