1
0
mirror of https://github.com/joaquinjsb/gitea-release-please-action synced 2026-05-11 19:01:30 +02:00

feat: add pull-request-header input (#615)

Co-authored-by: Jeff Ching <chingor@google.com>
This commit is contained in:
Philippe Laflamme
2022-12-08 11:45:33 -05:00
committed by GitHub
parent 7a173c3827
commit 9963ea2aa8
4 changed files with 39 additions and 0 deletions

View File

@@ -141,6 +141,7 @@ async function manifestInstance (github) {
const versionFile = core.getInput('version-file') || undefined
const extraFiles = core.getMultilineInput('extra-files') || undefined
const pullRequestTitlePattern = core.getInput('pull-request-title-pattern') || undefined
const pullRequestHeader = core.getInput('pull-request-header') || undefined
const draft = getOptionalBooleanInput('draft')
const draftPullRequest = getOptionalBooleanInput('draft-pull-request')
const changelogType = core.getInput('changelog-notes-type') || undefined
@@ -179,6 +180,7 @@ async function manifestInstance (github) {
extraFiles,
includeComponentInTag: monorepoTags,
pullRequestTitlePattern,
pullRequestHeader,
draftPullRequest,
versioning,
releaseAs,