From 681fc735e1a82ae97b2b5917fbc29a3e8a27498f Mon Sep 17 00:00:00 2001 From: Philipp Horstenkamp Date: Sun, 19 Nov 2023 14:38:40 +0100 Subject: [PATCH] Added to more input values. --- index.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/index.js b/index.js index 09c0c0a..a82b812 100644 --- a/index.js +++ b/index.js @@ -22,6 +22,9 @@ async function getAndPostPullRequests() { const labelsInput = core.getInput("labels"); const githubToken = core.getInput("github_token"); + const title = core.getInput("title"); + const body = core.getInput("body"); + const branch = core.getInput("branch"); if (!branch) { const ref = process.env.GITHUB_REF;