github-tag-action
github-tag-action copied to clipboard
A Github Action to automatically bump and tag master, on merge, with the latest SemVer formatted version. Works on any platform.
Hi all, How can I set the initial version to the tags. It always start from 0.0.0. Is there a way that I can provide initial version like 1.0.0 and...
Using both the default angular based syntax (e.g. feat: my feature summary) and custom keywords (e.g. FEATURE:minor) in the action inputs does not trigger the appropriate bump in the version,...
The option pre_release_branches defaults to ``, but you are using `.match` which always returns true when passed an empty string. ``` branch = "anything"; Boolean(branch.match('')) # always true ``` https://github.com/mathieudutour/github-tag-action/blob/v6.0/src/action.ts#L58...
It would be a really nice feature if the parsing handled commits squashed by github. Seemingly the only way to get it working is either a merge commit or rebase...
I have an action which is triggered through the GitHub UI, which takes a commit_id as a parameter. If I specify the latest commit in the repo, the action runs...
Default is `"false"` leading to `createAnnotatedTag = true` in all cases
Hi! I have a usecase where I want a v1 and v2 version of a project in the same repo. Currently it seems to only be able to use a...
Since this action was based off of the [anothrNick/github-tag-action](https://github.com/anothrNick/github-tag-action) action, could we please get the TAG_CONTEXT input? The current action will bump the version based exclusively on what the latest...
**Description** This github action leverages the `process.env.GITHUB_SERVER_URL` and `process.env.GITHUB_REPOSITORY` environment variables to define the repository url. From everything that I have seen, these cannot easily be overwritten within Github actions....
My workflow ran successfully once before this. So Previous tag should be v0.0.1. But every push to main now can't detect existing v0.0.1 tag and tries create it again. This...