Added to more input values.

This commit is contained in:
Philipp Horstenkamp 2023-11-19 14:38:40 +01:00
parent 6ceb12b621
commit 681fc735e1
Signed by: Philipp
GPG Key ID: DD53EAC36AFB61B4

View File

@ -22,6 +22,9 @@ async function getAndPostPullRequests() {
const labelsInput = core.getInput("labels"); const labelsInput = core.getInput("labels");
const githubToken = core.getInput("github_token"); const githubToken = core.getInput("github_token");
const title = core.getInput("title");
const body = core.getInput("body");
const branch = core.getInput("branch"); const branch = core.getInput("branch");
if (!branch) { if (!branch) {
const ref = process.env.GITHUB_REF; const ref = process.env.GITHUB_REF;