Skip to content

Commit

Permalink
fix: add required to inputs in action metadata (#264)
Browse files Browse the repository at this point in the history
According to the documentation, `inputs.<input_id>.required` is a
required field.
  • Loading branch information
browniebroke committed Sep 16, 2020
1 parent c203c9f commit e76b255
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions action.yml
Expand Up @@ -6,15 +6,19 @@ inputs:
directory:
description: 'Sub-directory to cd into before running semantic-release'
default: '.'
required: false
github_token:
description: 'GitHub token used to push release notes and new commits/tags'
required: true
pypi_token:
description: 'PyPI API token'
required: false
pypi_username:
description: 'Username with project access to push to PyPI'
required: false
pypi_password:
description: 'Password to the account specified in pypi_username'
required: false

runs:
using: 'docker'
Expand Down

0 comments on commit e76b255

Please sign in to comment.