richardinnocent/semantic-versioning-maven
A simple GitHub Action to increment the Maven version of a project based on conventional commits.
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
Inputs
| name | description | required | default |
|---|---|---|---|
| access-token | The token used to perform the commit actions such as committing the version changes to the repository. If unset, the default token for your action will be used. | no | — |
| git-email | The email address each commit will be associated with. | no | 41898282+github-actions[bot]@users.noreply.github.com |
| git-username | The GitHub username each commit will be associated with. | no | github-actions[bot] |
| pom-path | The path within your directory where the parent pom.xml you intend to change is located. | no | . |
| version-prefix | The prefix to include before the semantic version number. | no | v |
Outputs
| name | description |
|---|---|
| previous-version | The version before the version was incremented. This may be the same as the new version. |
| new-version | The new version after the version was incremented. This may be the same as the previous version. |