From a0a223d89d694e3362525d2e59b1e030ffd3fd8d Mon Sep 17 00:00:00 2001 From: Philipp Horstenkamp Date: Sun, 19 Nov 2023 15:13:44 +0100 Subject: [PATCH] Removed some arguments for testing. --- index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.js b/index.js index 0969f43..4863ff1 100644 --- a/index.js +++ b/index.js @@ -83,9 +83,9 @@ async function getAndPostPullRequests() { base: base_branch, }; - if (assigneesInput) postData.assignees = assigneesInput.split(","); - if (reviewersInput) postData.reviewers = reviewersInput.split(","); - if (labelsInput) postData.labels = labelsInput.split(","); + // if (assigneesInput) postData.assignees = assigneesInput.split(","); + // if (reviewersInput) postData.reviewers = reviewersInput.split(","); + // if (labelsInput) postData.labels = labelsInput.split(","); core.info(url); core.info(JSON.stringify(postData));