Skip to content
This repository has been archived by the owner on May 14, 2024. It is now read-only.

Commit

Permalink
fix: default package-name to undefined (#459)
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
lukekarrys and bcoe committed Apr 20, 2022
1 parent 3278f16 commit 4f37698
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -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
Expand Down

0 comments on commit 4f37698

Please sign in to comment.