[]
# Parse commits according to the conventional commits specification.
= true
# Exclude commits that do not match the conventional commits specification.
= true
# Exclude commits that are not matched by any commit parser.
= true
# Include only the tags that belong to the current branch.
= false
# An array of regex based parsers for extracting data from the commit message.
# Assigns commits to groups.
# Optionally sets the commit's scope and can decide to exclude commits from further processing.
= [
{ = "^feat", = "<!-- 0 -->🚀 Features" },
{ = "^fix", = "<!-- 1 -->🐛 Bug Fixes" },
{ = "^refactor", = "<!-- 2 -->🚜 Refactor" },
{ = "^perf", = "<!-- 3 -->⚡ Performance" },
]