-
Notifications
You must be signed in to change notification settings - Fork 9
/
default.toml
58 lines (47 loc) · 1.16 KB
/
default.toml
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
breaking_changes = true
issues = true
emoji = false
[[commit_types]]
name = "feat"
emoji = "✨"
description = "A new feature"
[[commit_types]]
name = "fix"
emoji = "🐛"
description = "A bug fix"
[[commit_types]]
name = "docs"
emoji = "📚"
description = "Documentation only changes"
[[commit_types]]
name = "style"
emoji = "💄"
description = "Changes that do not affect the meaning of the code"
[[commit_types]]
name = "refactor"
emoji = "🔨"
description = "A code change that neither fixes a bug nor adds a feature"
[[commit_types]]
name = "perf"
emoji = "⚡"
description = "A code change that improves performance"
[[commit_types]]
name = "test"
emoji = "🚨"
description = "Adding missing tests or correcting existing tests"
[[commit_types]]
name = "build"
emoji = "📦"
description = "Changes that affect the build system or external dependencies"
[[commit_types]]
name = "ci"
emoji = "🤖"
description = "Changes to our CI configuration files and scripts"
[[commit_types]]
name = "chore"
emoji = "🧹"
description = "Other changes that don't modify src or test files"
[[commit_types]]
name = "revert"
emoji = "⏪"
description = "Reverts a previous commit"