1
0
mirror of https://github.com/joaquinjsb/gitea-release-please-action synced 2026-05-13 01:21:35 +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

2
dist/index.js vendored
View File

@@ -77,6 +77,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')
@@ -92,6 +93,7 @@ async function main () {
changelogPath,
changelogSections,
versionFile,
extraFiles,
includeComponentInTag: monorepoTags,
pullRequestTitlePattern,
draftPullRequest