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
Currently the action expects a commit message matching the following example: Bumps netlify-cli from 19.0.0 to 19.0.1
Bumps netlify-cli from 19.0.0 to 19.0.1
If the repository follows conventional commit parctices though, the commit message created by dependabot would rather look like this:
chore(deps-dev): bump netlify-cli from 19.0.0 to 19.0.1
The commit message regex should be update to reflect this possibility
const bumpFragment = commitMessage.match(/^.*(?:: )?[Bb]ump[s]? .* from (?<from>v?\d[^ ]*) to (?<to>v?\d[^ ]*)\.?$/m)
Note
The Regex above was also updated to reflect the changes in #604
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
Currently the action expects a commit message matching the following example:
Bumps netlify-cli from 19.0.0 to 19.0.1
If the repository follows conventional commit parctices though, the commit message created by dependabot would rather look like this:
chore(deps-dev): bump netlify-cli from 19.0.0 to 19.0.1
The commit message regex should be update to reflect this possibility
Note
The Regex above was also updated to reflect the changes in #604
The text was updated successfully, but these errors were encountered: