There are several inputs (repo_token, event_name) in the action.yml file that are denoted as required but have default values that are automatically populated by the GitHub Actions runner. These shouldn't be listed as required since they're getting flagged in GitHub Actions linters as missing parameters.
Current Behavior
When writing a GitHub Action workflow using this action, popular GitHub Actions extensions like this will flag the workflow as missing required parameters, even though the workflow runs just fine without them.
Expected Behavior
I should be able to use this in my workflow and only need to define the file_glob parameter.
Context
There are several inputs (
repo_token
,event_name
) in theaction.yml
file that are denoted as required but have default values that are automatically populated by the GitHub Actions runner. These shouldn't be listed as required since they're getting flagged in GitHub Actions linters as missing parameters.Current Behavior
When writing a GitHub Action workflow using this action, popular GitHub Actions extensions like this will flag the workflow as missing required parameters, even though the workflow runs just fine without them.
Expected Behavior
I should be able to use this in my workflow and only need to define the
file_glob
parameter.Possible Workaround/Solution
Change this line and this line to be
required: false
.