-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconventionalcommit.json
More file actions
38 lines (38 loc) · 1.1 KB
/
conventionalcommit.json
File metadata and controls
38 lines (38 loc) · 1.1 KB
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
{
"types": {
"feat": { "description": "A new feature" },
"fix": { "description": "A bug fix" },
"refactor": { "description": "Code change that neither fixes a bug nor adds a feature" },
"perf": { "description": "Performance improvements" },
"test": { "description": "Adding or modifying tests" },
"build": { "description": "Changes that affect the build system or dependencies" },
"ci": { "description": "CI/CD related changes (Buildkite, GitHub Actions, etc.)" },
"docs": { "description": "Documentation changes only" },
"style": { "description": "Code style changes (formatting, semicolons, etc.)" },
"chore": { "description": "Miscellaneous maintenance tasks" },
"revert": { "description": "Reverts a previous commit" }
},
"scopes": [
"server",
"ml",
"engine",
"topics/queues",
"storage",
"scheduler",
"config",
"schema",
"protocol",
"network",
"rest",
"buildkite",
"docs"
],
"footers": [
"BREAKING CHANGE",
"DEPRECATED",
"SECURITY",
"NO-ISSUE"
],
"maxHeaderWidth": 100,
"maxLineWidth": 160
}