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:
2
index.js
2
index.js
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user