1
0
mirror of https://github.com/joaquinjsb/gitea-release-please-action synced 2026-05-11 17:21:35 +02:00

feat: add bump-patch-for-minor-pre-major option (#365)

This commit is contained in:
Ilya Lesikov
2021-09-24 00:02:28 +03:00
committed by GitHub
parent 973b63d3d5
commit 435e216fbe
6 changed files with 30 additions and 22 deletions

View File

@@ -80,6 +80,7 @@ async function main () {
const { token, fork, defaultBranch, apiUrl, repoUrl } = getGitHubInput()
const bumpMinorPreMajor = getBooleanInput('bump-minor-pre-major')
const bumpPatchForMinorPreMajor = getBooleanInput('bump-patch-for-minor-pre-major')
const monorepoTags = getBooleanInput('monorepo-tags')
const packageName = core.getInput('package-name')
const path = core.getInput('path') || undefined
@@ -128,6 +129,7 @@ async function main () {
token,
label: RELEASE_LABEL,
bumpMinorPreMajor,
bumpPatchForMinorPreMajor,
changelogPath,
changelogSections,
versionFile,