From 448897126a743dbe1e515745c2de11ce4ef53718 Mon Sep 17 00:00:00 2001 From: Google GitHub Actions Bot <72759630+google-github-actions-bot@users.noreply.github.com> Date: Mon, 15 Aug 2022 16:16:06 -0500 Subject: [PATCH] chore: build dist (#567) chore: build dist release-please-action --- dist/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dist/index.js b/dist/index.js index 2721608..4f9472f 100644 --- a/dist/index.js +++ b/dist/index.js @@ -136,14 +136,14 @@ async function manifestInstance (github) { const component = core.getInput('component') || undefined const includeVInTag = core.getBooleanInput('include-v-in-tag') const tagSeparator = core.getInput('tag-separator') || undefined - const snapshotLabels = core.getMultilineInput('snapshot-labels') || undefined + const snapshotLabels = core.getInput('snapshot-labels') ? core.getMultilineInput('snapshot-labels') : undefined const bootstrapSha = core.getInput('bootstrap-sha') || undefined const lastReleaseSha = core.getInput('last-release-sha') || undefined const alwaysLinkLocal = core.getBooleanInput('always-link-local') const separatePullRequests = core.getBooleanInput('separate-pull-requests') const plugins = core.getMultilineInput('plugins') || undefined - const labels = core.getMultilineInput('labels') || undefined - const releaseLabels = core.getMultilineInput('release-labels') || undefined + const labels = core.getInput('labels') ? core.getMultilineInput('labels') : undefined + const releaseLabels = core.getInput('release-labels') ? core.getMultilineInput('release-labels') : undefined const skipLabeling = core.getBooleanInput('skip-labeling') const sequentialCalls = core.getBooleanInput('sequential-calls') const groupPullRequestTitlePattern = core.getInput('group-pull-request-title-pattern') || undefined