hopeman15/Verselicious
Automate semantic versioning with labels.
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
Inputs
| name | description | required | default |
|---|---|---|---|
| github_token | GitHub token for API access. Use a PAT if tag creation needs to trigger downstream workflows. | yes | — |
| major_label | Label name that triggers a major version bump. | no | major |
| minor_label | Label name that triggers a minor version bump. | no | minor |
| patch_label | Label name that triggers a patch version bump. | no | patch |
| tag_prefix | Prefix for version tags (e.g., "v" to produce "v1.0.0"). | no | "" |
| target_branch | Branch to target for the release. | no | main |
| generate_notes | Whether to auto-generate release notes. | no | true |
Outputs
| name | description |
|---|---|
| new-version | The new version after bumping (e.g., "1.1.0") |
| previous-version | The version before bumping (e.g., "1.0.0") |
| tag | The full tag created (e.g., "v1.1.0" if tag-prefix is "v") |
| release-url | URL of the created GitHub release |