mirror of
https://github.com/joaquinjsb/gitea-release-please-action
synced 2026-05-05 10:37:47 +02:00
committed by
GitHub
parent
06477146cd
commit
448897126a
6
dist/index.js
vendored
6
dist/index.js
vendored
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user