You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The regex of the following commit_parser declares a capture group that should be accessible with ${1} according to the examples.
This works fine for the group attribute but not for the scope. I don't use the conventional commit message format and therefore would like to extract the scope dynamically as well.
{ message = "^\\[(.*)\\]", group = "Changes to ${1}", scope = "${1}" },
To reproduce
Expected behavior
group=my_scope and scope=my_scope
Screenshots / Logs
Software information
Operating system:
Rust version:
Project version:
Additional context
The text was updated successfully, but these errors were encountered:
Describe the bug
The regex of the following commit_parser declares a capture group that should be accessible with
${1}
according to the examples.This works fine for the group attribute but not for the scope. I don't use the conventional commit message format and therefore would like to extract the scope dynamically as well.
To reproduce
Expected behavior
group=my_scope
andscope=my_scope
Screenshots / Logs
Software information
Additional context
The text was updated successfully, but these errors were encountered: