-
Notifications
You must be signed in to change notification settings - Fork 8
Description
Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
"Versio" handles tagging perfectly by calculating the new version based on the commit. I use it to manage the versions of various GitHub actions for our company.
Since we use conventional commit, we take care to manage breaking changes properly.
Also, we call our GitHub actions by referencing the version vX (example: uses: repo/githubaction@githubaction/v0 instead of repo/githubaction@githubaction/v0.2.3)
Describe the solution you'd like
A clear and concise description of what you want to happen.
However, it's only capable of managing tags in the format X.Y.Z.
I would have liked it to be able to add (and update) tags X and X.Y.
Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
I add some "magic" myself by pointing major and minor tags to the new release version, but I think Versio could handle that natively.
Thank you for your work!