Closed
Description
Is your feature request related to a problem? Please describe.
Hello! Would it be possible to set commitPrefix as a list so we can change/transform several branch patterns into several commit message prefix pattern ?
Describe the solution you'd like
For example something like this:
git:
commitPrefix:
- pattern: "^\\w+-\\w+.*"
replace: '[JIRA $0] '
- pattern: "^\\w+\\/(\\w+-\\w+).*"
replace: '[$1] '
Currently we have:
git:
commitPrefix:
pattern: "^\\w+-\\w+.*"
replace: '[JIRA $0] '
Thanks for your reading !