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 current matcher expects the commit message to end with a dot (.).
const bumpFragment = commitMessage.match(/^Bumps .* from (?<from>v?\d[^ ]*) to (?<to>v?\d[^ ]*)\.$/m)
Refering to #595 as an example, the commit message ends with the version number and not a .
The regex should be updated accordingly
const bumpFragment = commitMessage.match(/^Bumps .* from (?<from>v?\d[^ ]*) to (?<to>v?\d[^ ]*)\.?$/m)
The text was updated successfully, but these errors were encountered:
Never mind, I got under the impression that the matcher was using the commit title, while it is actually using the commit body
Sorry, something went wrong.
No branches or pull requests
The current matcher expects the commit message to end with a dot (
.
).Refering to #595 as an example, the commit message ends with the version number and not a
.
The regex should be updated accordingly
The text was updated successfully, but these errors were encountered: