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

fix: default package-name to undefined (#459)

This allows for release-please to fallback to the deault value since it
uses the nullish coalescing operator for that check.

Fixes #457

Co-authored-by: Benjamin E. Coe <bencoe@google.com>
This commit is contained in:
Luke Karrys
2022-04-20 08:40:57 -07:00
committed by GitHub
parent 3278f16569
commit 4f376985d0

View File

@@ -109,7 +109,7 @@ async function manifestInstance (github) {
const bumpMinorPreMajor = core.getBooleanInput('bump-minor-pre-major')
const bumpPatchForMinorPreMajor = core.getBooleanInput('bump-patch-for-minor-pre-major')
const monorepoTags = core.getBooleanInput('monorepo-tags')
const packageName = core.getInput('package-name')
const packageName = core.getInput('package-name') || undefined
const path = core.getInput('path') || undefined
const releaseType = core.getInput('release-type', { required: true })
const changelogPath = core.getInput('changelog-path') || undefined