chore: update cliff.toml

This commit is contained in:
2022-01-08 04:47:36 +00:00
parent ca56ea21de
commit f42c49503b

View File

@@ -38,17 +38,17 @@ footer = """
conventional_commits = true conventional_commits = true
# regex for parsing and grouping commits # regex for parsing and grouping commits
commit_parsers = [ commit_parsers = [
{ message = "^feat", group = "Features"}, { message = "^feat", group = "Features"},
{ message = "^fix", group = "Bug Fixes"}, { message = "^fix", group = "🐛 Bug Fixes"},
{ message = "^doc", group = "Documentation"}, { message = "^doc", group = "📘 Documentation"},
{ message = "^perf", group = "Performance"}, { message = "^perf", group = "🏎 Performance"},
{ message = "^refactor", group = "Refactor"}, { message = "^refactor", group = "🛠 Refactor/Improvement"},
{ message = "^style", group = "Styling"}, { message = "^style", group = "🎨 Styling"},
{ message = "^test", group = "Testing"}, { message = "^test", group = "🧪 Testing"},
{ message = "^build", group = "🧱 Build"},
{ body = ".*security", group = "🔐 Security"},
{ message = "^chore\\(release\\): prepare for", skip = true}, { message = "^chore\\(release\\): prepare for", skip = true},
{ message = "^chore", group = "Miscellaneous Tasks", skip = true}, { message = "^chore", group = "🥱 Miscellaneous Tasks", skip = true},]
{ body = ".*security", group = "Security"},
]
# filter out the commits that are not matched by commit parsers # filter out the commits that are not matched by commit parsers
filter_commits = false filter_commits = false
# glob pattern for matching git tags # glob pattern for matching git tags