1
0
mirror of https://github.com/joaquinjsb/gitea-release-please-action synced 2026-05-14 10:01:34 +02:00

feat(deps): latest version of release-please (#122)

This commit is contained in:
Benjamin E. Coe
2020-12-01 18:35:09 -05:00
committed by GitHub
parent a546b365e3
commit 5469575329
4 changed files with 63 additions and 48 deletions

View File

@@ -7,8 +7,6 @@ const RELEASE_LABEL = 'autorelease: pending'
async function main () {
const bumpMinorPreMajor = Boolean(core.getInput('bump-minor-pre-major'))
// TODO(bcoe): remove this log line.
console.info(typeof core.getInput('clean'), core.getInput('clean'))
const clean = core.getInput('clean') !== 'false'
const monorepoTags = Boolean(core.getInput('monorepo-tags'))
const packageName = core.getInput('package-name')
const path = core.getInput('path') ? core.getInput('path') : undefined
@@ -50,7 +48,6 @@ async function main () {
// release PR:
if (!command || command === 'release-pr') {
const release = releasePlease.getReleasePRFactory().buildStatic(releaseType, {
clean,
monorepoTags,
packageName,
path,