chantsune/Release with commit
GitHub Action that creates a GitHub Release when a commit message matches your regular expression.
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
Inputs
| name | description | required | default |
|---|---|---|---|
| regexp | The pattern of commit message. Create a release if commit message match this. | yes | — |
| regexp_options | The option of `regexp`. | no | — |
| tag_name | The name of the tag. | no | — |
| release_name | The name of the release. For example, `Release v1.0.1` | no | — |
| body | Text describing the contents of the tag. | no | — |
| body_path | Path to file with information about the tag. | no | — |
| draft | `true` to create a draft (unpublished) release, `false` to create a published one. Default: `false` | no | false |
| prerelease | `true` to identify the release as a prerelease. `false` to identify the release as a full release. Default: `false` | no | false |
| generate_release_notes | `true` to automatically generate the name and body for the release. When enabled, `release_name` (name) and `body`/`body_path` (body) are only used if explicitly set; anything left unspecified is generated by GitHub. Default: `false` | no | false |
| commitish | Any branch or commit SHA the Git tag is created from, unused if the Git tag already exists. Default: SHA of current commit | no | — |
Outputs
| name | description |
|---|---|
| id | The ID of the created Release |
| html_url | The URL users can navigate to in order to view the release |
| upload_url | The URL for uploading assets to the release |
| created | The Boolean value of whether a release was created |
| tag_name | The name of the created tag_name |