-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.json
92 lines (92 loc) · 2.17 KB
/
schema.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
{
"_cvtProperties": {
"$schema": {
"doc": "Schema version",
"format": "string",
"default": "0.0.0"
},
"git": {
"_cvtProperties": {
"enabled": {
"doc": "Enable git",
"format": "boolean",
"default": false
},
"commit": {
"doc": "Commit changes",
"format": "boolean",
"default": true
},
"commitMessage": {
"doc": "Commit message",
"format": "string",
"default": "chore(release): :rocket: ${version}"
},
"commitArgs": {
"doc": "Commit arguments",
"format": "array",
"default": []
},
"tag": {
"doc": "Tag the release",
"format": "boolean",
"default": true
},
"tagName": {
"doc": "Tag message",
"format": "string",
"default": "v${version}"
},
"tagArgs": {
"doc": "Tag arguments",
"format": "array",
"default": []
},
"tagAnnotation": {
"doc": "Tag annotation",
"format": "string",
"default": "Release ${version}"
},
"push": {
"doc": "Push changes",
"format": "boolean",
"default": true
},
"requireCleanWorkingDir": {
"doc": "Require a clean working directory",
"format": "boolean",
"default": true
},
"changelog": {
"doc": "Generate changelog",
"format": "string",
"default": "default"
}
}
},
"github": {
"_cvtProperties": {
"enabled": {
"doc": "Enable GitHub",
"format": "boolean",
"default": false
},
"release": {
"doc": "Create a GitHub release",
"format": "boolean",
"default": true
},
"releaseName": {
"doc": "Release name",
"format": "string",
"default": "Release ${version}"
},
"releaseBody": {
"doc": "Release body",
"format": "string",
"default": ""
}
}
}
}
}