mdb/Mike Ball
Check that a given GitHub release tag does not already exist
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
Inputs
| name | description | required | default |
|---|---|---|---|
| tag | The release tag to check for | yes | — |
| token | A GitHub access token | yes | — |
| failure-message | An optional customized message to display on failure | no | — |
| skip-commit-message-pattern | If the specified skip-commit-message-pattern is present in the specified commit-message, do not fail, regardless of whether the release exists. | no | — |
| skip-pattern | Deprecated; use skip-commit-message-pattern. | no | — |
| commit-message | The commit message. Required if skip-commit-message-pattern is specified. | no | — |
| skip-authors | If any of the specified newline-separated list of skip-authors matches the specified author, do not fail, regardless of whether the release exists. | no | — |
| author | The commit author. Required if skip-author is specified. | no | — |
Outputs
| name | description |
|---|---|
| exists | true if the GitHub release tag already exists; false if not |
| skipped | true if evaluation was skipped; false if not |