1
0
mirror of https://github.com/joaquinjsb/gitea-release-please-action synced 2026-05-07 22:41:16 +02:00

fix: default labels should be undefined (#566)

This commit is contained in:
Jeff Ching
2022-08-15 13:56:23 -07:00
committed by GitHub
parent 6a05e01ec0
commit 06477146cd

View File

@@ -129,14 +129,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