-
Notifications
You must be signed in to change notification settings - Fork 20
/
conventionalcommit.json
114 lines (114 loc) · 3.52 KB
/
conventionalcommit.json
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"types": {
"refactor": {
"description": "Changes which neither fix a bug nor add a feature."
},
"fix": {
"description": "Changes which patch a bug in the codebase."
},
"feat": {
"description": "Changes which introduce a new feature to the codebase."
},
"build": {
"description": "Changes which affect the build system or external dependencies.",
"scopes": {
"gradle": {
"description": "Changes which affect the Gradle build system."
},
"yarn": {
"description": "Changes which affect the Yarn build system."
}
}
},
"chore": {
"description": "Changes which are not user-facing, such as IntelliJ configuration files, gitignore, other repo configs, updating dependencies, copyrights or other non-code changes.",
"scopes": {
"project": {
"description": "Changes which affect project configuration files."
},
"deps": {
"description": "Changes which update dependencies."
}
}
},
"style": {
"description": "Changes which do not affect code logic, such as whitespaces, formatting, missing semicolons etc."
},
"test": {
"description": "Changes which add missing tests or fix existing ones."
},
"docs": {
"description": "Changes which affect documentation.",
"scopes": {
"business": {
"description": "Changes which update or add business documentation."
},
"technical": {
"description": "Changes which update or add technical documentation."
},
"readme": {
"description": "Changes which update or add the README file."
}
}
},
"perf": {
"description": "Changes which improve performance."
},
"ci": {
"description": "Changes which affect CI configuration files and scripts.",
"scopes": {
"github-actions": {
"description": "Changes which affect GitHub Actions configuration files."
}
}
},
"revert": {
"description": "Changes which revert a previous commit."
},
"wip": {
"description": "Changes which are work in progress."
}
},
"footerTypes": [
{
"name": "BREAKING CHANGE",
"description": "The commit introduces breaking API changes."
},
{
"name": "Closes",
"description": "The commit closes issues or pull requests"
},
{
"name": "Implements",
"description": "The commit implements features"
},
{
"name": "Author",
"description": "The commit author"
},
{
"name": "Co-authored-by",
"description": "The specified person co-authored the commit changes"
},
{
"name": "Signed-off-by",
"description": "A signoff may certify that the committer has the rights to submit the work under the project's license or agrees to some contributor representation, such as a Developer Certificate of Origin"
},
{
"name": "Acked-by",
"description": "The specified person liked the commit changes"
},
{
"name": "Reviewed-by",
"description": "The specified person reviewed and is completely satisfied with the commit changes"
},
{
"name": "Tested-by",
"description": "The specified person applied the commit changes and found them to have the desired effect"
},
{
"name": "Refs",
"description": "The commit references another commit by its hash ID. For multiple hash IDs, use a comma as a separator"
}
]
}