therealwaldo/quick-release Github Action
Github Action to perform simple, and quick releases.
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
- Runtime
- Deprecated runtime
Inputs
| name | description | required | default |
|---|---|---|---|
| token | GitHub Token to be used for creating pull requests, releases, etc. | yes | ${{ github.token }} |
| github-username | Set the Github username to use for creating/pushing updates. | yes | ${{ github.actor }} |
| git-user-name | Set the git users full name to use when quick-release commits. | yes | quick-release bump |
| git-user-email | Set the git email address to use when quick-release commits. | yes | — |
| tag-prefix | Tag Prefix for versions. | no | v |
| base | The base branch a release pull request should target. | yes | main |
| preset | Preset to use for conventional-recommended-bump. If not specified will attempt to auto-detect. | no | — |
| replace-files | Comma separated list of paths to files in which to replace the current version with the bumped version. | no | — |
| assignees | Comma separated list of Github users to assign to pull-request. | no | — |
Outputs
| name | description |
|---|---|
| recommendedVersion | Proposed version based on commits. |
| latestVersion | Previous or current version from tags. |
| changelog | Changelog as generated from commits. |
| pull-request | Pull request number if one was created or updated. |
| status | What quick-release wound up doing. One of `pull-request`, `release`, or `nothing`. |