We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The option pre_release_branches defaults to ``, but you are using .match which always returns true when passed an empty string.
.match
branch = "anything"; Boolean(branch.match('')) # always true
https://github.com/mathieudutour/github-tag-action/blob/v6.0/src/action.ts#L58
We use this behavior but it is not intuitive (maybe documentation should be updated to say that all branches are prerelease).
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The option pre_release_branches defaults to ``, but you are using
.match
which always returns true when passed an empty string.https://github.com/mathieudutour/github-tag-action/blob/v6.0/src/action.ts#L58
We use this behavior but it is not intuitive (maybe documentation should be updated to say that all branches are prerelease).
The text was updated successfully, but these errors were encountered: