From 23f93356bdd6c2399ad029ea97c585a9ce8cdae6 Mon Sep 17 00:00:00 2001 From: google-github-actions-bot <72759630+google-github-actions-bot@users.noreply.github.com> Date: Mon, 1 Feb 2021 22:01:33 -0600 Subject: [PATCH] chore: build dist release-please-action (#203) --- dist/index.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dist/index.js b/dist/index.js index 6ced20e..327e0b2 100644 --- a/dist/index.js +++ b/dist/index.js @@ -3957,6 +3957,7 @@ async function main () { const changelogTypes = core.getInput('changelog-types') const command = core.getInput('command') ? core.getInput('command') : undefined const versionFile = core.getInput('version-file') ? core.getInput('version-file') : undefined + const defaultBranch = core.getInput('default-branch') ? core.getInput('default-branch') : undefined // Parse the changelogTypes if there are any let changelogSections @@ -4001,7 +4002,8 @@ async function main () { label: RELEASE_LABEL, bumpMinorPreMajor, changelogSections, - versionFile + versionFile, + defaultBranch }) const pr = await release.run() if (pr) {