1
0
mirror of https://github.com/joaquinjsb/gitea-release-please-action synced 2026-05-12 14:31:39 +02:00

feat: provide inputs for releaser and manifest options in release-please 13.15 (#474)

* Synchronised action inputs with ReleaserConfig and ManifestOptions from release-please 13.15.0

* fix conflict from merge

* fix merge issue

* fix merge issue

Co-authored-by: Benjamin E. Coe <bencoe@google.com>
Co-authored-by: Jeff Ching <chingor@google.com>
This commit is contained in:
Andrew Sweet
2022-08-10 19:08:25 +01:00
committed by GitHub
parent 63e061f3b4
commit 44827541d2
4 changed files with 243 additions and 33 deletions

View File

@@ -121,6 +121,27 @@ async function manifestInstance (github) {
const pullRequestTitlePattern = core.getInput('pull-request-title-pattern') || undefined
const draft = core.getBooleanInput('draft')
const draftPullRequest = core.getBooleanInput('draft-pull-request')
const changelogType = core.getInput('changelog-notes-type') || undefined
const versioning = core.getInput('versioning-strategy') || undefined
const releaseAs = core.getInput('release-as') || undefined
const skipGithubRelease = core.getBooleanInput('skip-github-release')
const prerelease = core.getBooleanInput('prerelease')
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 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 skipLabeling = core.getBooleanInput('skip-labeling')
const sequentialCalls = core.getBooleanInput('sequential-calls')
const groupPullRequestTitlePattern = core.getInput('group-pull-request-title-pattern') || undefined
const releaseSearchDepth = core.getInput('release-search-depth') || undefined
const commitSearchDepth = core.getInput('commit-search-depth') || undefined
return await Manifest.fromConfig(
github,
github.repository.defaultBranch,
@@ -136,12 +157,37 @@ async function manifestInstance (github) {
extraFiles,
includeComponentInTag: monorepoTags,
pullRequestTitlePattern,
draftPullRequest
draftPullRequest,
versioning,
releaseAs,
skipGithubRelease,
draft,
prerelease,
component,
includeVInTag,
tagSeparator,
changelogType,
snapshotLabels
},
{
draft,
signoff,
fork
fork,
draftPullRequest,
bootstrapSha,
lastReleaseSha,
alwaysLinkLocal,
separatePullRequests,
plugins,
labels,
releaseLabels,
snapshotLabels,
skipLabeling,
sequentialCalls,
prerelease,
groupPullRequestTitlePattern,
releaseSearchDepth,
commitSearchDepth
},
path
)