1
0
mirror of https://github.com/joaquinjsb/gitea-release-please-action synced 2026-05-12 21:01:33 +02:00

feat: add extra-files input (#410)

This commit is contained in:
Jonathan Cornaz
2022-01-17 19:58:55 +01:00
committed by GitHub
parent de7494d27e
commit a487a5bdc8
4 changed files with 33 additions and 0 deletions

View File

@@ -70,6 +70,7 @@ async function main () {
const changelogTypes = core.getInput('changelog-types') || undefined
const changelogSections = changelogTypes && JSON.parse(changelogTypes)
const versionFile = core.getInput('version-file') || undefined
const extraFiles = core.getMultilineInput('extra-files') || undefined
const github = await getGitHubInstance()
const pullRequestTitlePattern = core.getInput('pull-request-title-pattern') || undefined
const draft = core.getBooleanInput('draft')
@@ -85,6 +86,7 @@ async function main () {
changelogPath,
changelogSections,
versionFile,
extraFiles,
includeComponentInTag: monorepoTags,
pullRequestTitlePattern,
draftPullRequest