From e76b255cf7d3d156e3314fc28c54d63fa126e973 Mon Sep 17 00:00:00 2001 From: Bruno Alla Date: Wed, 16 Sep 2020 20:31:35 +0200 Subject: [PATCH] fix: add required to inputs in action metadata (#264) According to the documentation, `inputs..required` is a required field. --- action.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/action.yml b/action.yml index 3a27e31b1..e47aa0489 100644 --- a/action.yml +++ b/action.yml @@ -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'