| action_name | Action to run, one of: "get_package_json_version", "dispatch_event", "update_changelog", "sync_package_and_package_lock_version", "setup_repo_webhook_for_deno_land_publishing", "is_well_formed_and_available_module_name", "string_replace", "tell_if_project_uses_npm_or_yarn", "is_package_json_version_upgraded" | yes | — |
| owner | Repository owner, example: 'garronej',github.repository_owner | no | ${{github.repository_owner}} |
| repo | Repository name, example: 'evt', github.event.repository.name | no | ${{github.event.repository.name}} |
| event_type | see: https://developer.github.com/v3/repos/#create-a-repository-dispatch-event | no | — |
| client_payload_json | Example '{"p":"foo"}' see: https://developer.github.com/v3/repos/#create-a-repository-dispatch-event | no | — |
| branch | Example: default ( can also be a sha ) | no | ${{ github.sha }} |
| exclude_commit_from_author_names_json | For update_changelog, do not includes commit from user certain committer in the CHANGELOG.md, ex: '["denoify_ci"]' | no | ["actions"] |
| module_name | A candidate module name, Example: lodash | no | — |
| compare_to_version | For get_package_json_version, a version against which comparing the result if found version more recent than compare_to_version compare_result is 1 if found version is equal to compare_to_version compare_result is 0 if found version is older to compare_to_version compare_result -1 Example: 0.1.3 | no | — |
| input_string | For string_replace, the string to replace | no | — |
| search_value | For string_replace, Example '-' ( Will be used as arg for RegExp constructor ) | no | — |
| replace_value | For string_replace, Example '_' | no | — |
| should_webhook_be_enabled | true|false, Should the create webhook be enabled, with setup_repo_webhook_for_deno_land_publishing | no | true |
| github_token | GitHub Personal access token | no | ${{ github.token }} |