Skip to content

Commit

Permalink
fix(config): packageName is optional (#239)
Browse files Browse the repository at this point in the history
  • Loading branch information
bcoe committed Feb 18, 2021
1 parent 76ee919 commit df8698c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion action.yml
Expand Up @@ -16,7 +16,7 @@ inputs:
default: true
package-name:
description: 'name of the distributions releases are being created for, e.g., "name" in package.json, or "setup.py"'
required: true
required: false
release-type:
description: 'what type of release is this, one of (ruby, python, node, terraform-module)'
required: true
Expand Down
2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -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 })
Expand Down

0 comments on commit df8698c

Please sign in to comment.