From 9149961b5b4671b4ba6b18ff876a0100fafdc8ff Mon Sep 17 00:00:00 2001 From: google-github-actions-bot <72759630+google-github-actions-bot@users.noreply.github.com> Date: Wed, 9 Dec 2020 20:14:40 -0600 Subject: [PATCH] chore: build dist release-please-action (#154) --- dist/index.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dist/index.js b/dist/index.js index ec49ff3..1e9639e 100644 --- a/dist/index.js +++ b/dist/index.js @@ -3332,13 +3332,13 @@ const RELEASE_LABEL = 'autorelease: pending' async function main () { const bumpMinorPreMajor = Boolean(core.getInput('bump-minor-pre-major')) - // TODO(bcoe): remove this log line. const monorepoTags = Boolean(core.getInput('monorepo-tags')) const packageName = core.getInput('package-name') const path = core.getInput('path') ? core.getInput('path') : undefined const releaseType = core.getInput('release-type') const token = core.getInput('token') const fork = core.getInput('fork') ? true : undefined + const changelogPath = core.getInput('changelog-path') ? core.getInput('changelog-path') : undefined 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 @@ -3359,7 +3359,8 @@ async function main () { packageName, path, monorepoTags, - token + token, + changelogPath }) const releaseCreated = await gr.createRelease() if (releaseCreated) {