-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcliff.toml
More file actions
26 lines (24 loc) · 896 Bytes
/
cliff.toml
File metadata and controls
26 lines (24 loc) · 896 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[changelog]
header = "# Changelog\n\n"
trim = true
[git]
conventional_commits = true
filter_unconventional = true
commit_preprocessors = [
{ pattern = "^feat", replace = "✨ feat" },
{ pattern = "^fix", replace = "🐛 fix" },
{ pattern = "^docs", replace = "📚 docs" },
{ pattern = "^refactor", replace = "♻️ refactor" },
{ pattern = "^perf", replace = "⚡ perf" },
{ pattern = "^test", replace = "✅ test" },
{ pattern = "^chore", replace = "🔧 chore" }
]
commit_parsers = [
{ message = "^✨ feat", group = "🚀 Features" },
{ message = "^🐛 fix", group = "🐛 Bug Fixes" },
{ message = "^📚 docs", group = "📚 Documentation" },
{ message = "^♻️ refactor", group = "♻️ Refactor" },
{ message = "^⚡ perf", group = "⚡ Performance" },
{ message = "^✅ test", group = "✅ Tests" },
{ message = "^🔧 chore", group = "🔧 Chore" }
]