1
0
mirror of https://github.com/joaquinjsb/gitea-release-please-action synced 2026-05-10 06:21:18 +02:00

chore: build dist release-please-action (#203)

This commit is contained in:
google-github-actions-bot
2021-02-01 22:01:33 -06:00
committed by GitHub
parent 4845e49098
commit 23f93356bd

4
dist/index.js vendored
View File

@@ -3957,6 +3957,7 @@ async function main () {
const changelogTypes = core.getInput('changelog-types')
const command = core.getInput('command') ? core.getInput('command') : undefined
const versionFile = core.getInput('version-file') ? core.getInput('version-file') : undefined
const defaultBranch = core.getInput('default-branch') ? core.getInput('default-branch') : undefined
// Parse the changelogTypes if there are any
let changelogSections
@@ -4001,7 +4002,8 @@ async function main () {
label: RELEASE_LABEL,
bumpMinorPreMajor,
changelogSections,
versionFile
versionFile,
defaultBranch
})
const pr = await release.run()
if (pr) {