-
Notifications
You must be signed in to change notification settings - Fork 535
Description
Thanks for stopping by to let us know something could be better!
Is your feature request related to a problem? Please describe.
Sort of yes, I use conventional commits with release-please Github actions throughout various projects as well were dependabot is under use, but release-please is unable to parse/understand dependabot dependencies bumps messages.
Describe the solution you'd like
I can customize dependabot bump message to change the customary **chore(deps): ** to **deps: ** as expected by release-please but release-please will only look for a message under a specific regular expression
/^deps: update dependency (.*) to (v[^\s]*)(\s\(#\d+\))?$/m;
and dependabot message carries the following format
deps: bump com.google.code.gson:gson from 2.10.1 to 2.11.0
The proposition here is to check the commit message agains 2 regex'es, 1 for renovate style and another for dependabot style.
Describe alternatives you've considered
can't think of any at the moment
Additional context
Add any other context or screenshots about the feature request here.