1
0
mirror of https://github.com/joaquinjsb/gitea-release-please-action synced 2026-05-13 20:31:33 +02:00

fix(config): packageName is optional (#239)

This commit is contained in:
Benjamin E. Coe
2021-02-17 21:33:02 -08:00
committed by GitHub
parent 76ee919f52
commit df8698c999
2 changed files with 2 additions and 2 deletions

View File

@@ -17,7 +17,7 @@ function getBooleanInput (input) {
async function main () {
const bumpMinorPreMajor = getBooleanInput('bump-minor-pre-major')
const monorepoTags = getBooleanInput('monorepo-tags')
const packageName = core.getInput('package-name', { required: true })
const packageName = core.getInput('package-name')
const path = core.getInput('path') || undefined
const releaseType = core.getInput('release-type', { required: true })
const token = core.getInput('token', { required: true })