-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommit-templates.default.toml
88 lines (78 loc) · 1.75 KB
/
commit-templates.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[chore]
label = "Chore 🤖"
description = "Build process or auxiliary tool changes"
vars = ["title"]
title = "chore 🤖: {{title}}"
branch_pattern = "^chore/.*"
body = ""
[ci]
label = "CI 🤖"
description = "CI related changes"
vars = ["title"]
title = "ci 🤖: {{title}}"
branch_pattern = "^ci/.*"
body = ""
[docs]
label = "Docs ✏️"
description = "Documentation only changes"
vars = ["title"]
title = "docs ✏️: {{title}}"
branch_pattern = "^docs/.*"
body = ""
[feat]
label = "Feat 🎸"
description = "A new feature"
vars = ["title", "ticket"]
title = "feat 🎸: {{title}}"
branch_pattern = "^feature/{{ticket}}$"
body = """
**Closes #{{ticket}}**
"""
[fix]
label = "Fix 🐞"
description = "A bug fix"
vars = ["title", "ticket"]
title = "fix 🐞: {{title}}"
branch_pattern = "^fix/GP-{{ticket}}$"
body = """
**Closes #{{ticket}}**
"""
[perf]
label = "Perf ⚡"
description = "A code change that improves performance"
vars = ["title"]
title = "perf ⚡️: {{title}}"
branch_pattern = "^perf/.*"
body = ""
[refactor]
label = "Refactor 💡"
description = "A code change that neither fixes a bug or adds a feature"
vars = ["title"]
title = "refactor 💡: {{title}}"
branch_pattern = "^refactor/.*"
body = ""
[release]
label = "Release 🏹"
description = "Create a release commit"
vars = ["title", "version"]
title = "release 🏹: {{title}}"
branch_pattern = "^release/.*"
body = """
Version: {{version}}
* Changelog *
- ...
"""
[style]
label = "Style 💄"
description = "Markup, white-space, formatting, missing semi-colons..."
vars = ["title"]
title = "style 💄: {{title}}"
branch_pattern = "^style/.*"
body = ""
[test]
label = "Test 💍"
description = "Adding missing tests"
vars = ["title"]
title = "test 💍: {{title}}"
branch_pattern = "^test/.*"
body = ""