From 88b3aada82e7178b3559ba0bbbcecf2433a23c55 Mon Sep 17 00:00:00 2001 From: Philipp Horstenkamp Date: Sun, 19 Nov 2023 14:39:37 +0100 Subject: [PATCH] Added an debug message. --- index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/index.js b/index.js index a82b812..e9d178f 100644 --- a/index.js +++ b/index.js @@ -87,6 +87,7 @@ async function getAndPostPullRequests() { if (reviewersInput) postData.reviewers = reviewersInput.split(","); if (labelsInput) postData.labels = labelsInput.split(","); + core.info(JSON.stringify(postData)); // Perform the POST request const postResponse = await fetch(url, { method: "POST",