Open
Description
It's not possible to use the releaser tool unless you tag exactly with semver tags because it consumes the git-semver-tags
package directly.
This is the line:
https://github.com/conventional-changelog/releaser-tools/blob/master/packages/conventional-github-releaser/src/index.js#L50
For better or worse, I have a website project that doesn't use semver tags, but an incremental counter tag, so v1, v2, v3, v4, v18273 and so forth; and alas these are not picked up by the semver tags so I can't get nice changelogs released 😢
Even providing from/to GIT SHAs doesn't work because the git tags check is still performed regardless.
I suggest:
- Skip tag loading when a from and to value is provided.
- Allow passing a function that can be used for returning tag data to replace
git-semver-tags