-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathgittey-config.json
More file actions
52 lines (52 loc) · 1.56 KB
/
gittey-config.json
File metadata and controls
52 lines (52 loc) · 1.56 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"branchPrefix": {
"separator": "",
"validator": "",
"prefixes": {}
},
"commitPrefix": {
"separator": " ",
"validator": "^.{1,45}$",
"prefixes": {
"F": "Feature (<= 8 LoC)",
"B": "Bug fix (<= 8 LoC)",
"R": "Test-supported Procedural Refactoring",
"t": "Test only",
"d": "Developer documentation (non-user facing)",
"a": "Automated formatting / code generation",
"r": "Provable (manual) refactoring",
"c": "Comments (add/delete)",
"e": "Environment (non-code) changes (for development)",
"F!!": "Feature (> 8 LoC)",
"B!!": "Bug fix (> 8 LoC)",
"R!!": "Non-provable refactoring",
"***": "Does not compile -- intermediate step"
}
},
"aliases": [
{
"name": "push",
"command": "gittey pull; git push"
},
{
"name": "push-major",
"command": "gittey pull; node ./version-bump major; git push origin main --tags"
},
{
"name": "push-minor",
"command": "gittey pull; node ./version-bump minor; git push origin main --tags"
},
{
"name": "push-patch",
"command": "gittey pull; node ./version-bump patch; git push origin main --tags"
},
{
"name": "pull",
"command": "gittey commit; git pull"
}
],
"collaborators": [
"Chris Stead",
"Jason Kerney"
]
}