forked from sql-formatter-org/sql-formatter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.release-it.json
36 lines (36 loc) · 865 Bytes
/
.release-it.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
{
"hooks": {},
"git": {
"changelog": "git log --pretty=format:\"* %s (%h)\" ${latestTag}...HEAD",
"requireCleanWorkingDir": true,
"requireBranch": "master",
"requireUpstream": true,
"requireCommits": false,
"addUntrackedFiles": false,
"commit": true,
"commitMessage": "Release v${version}",
"tag": true,
"tagAnnotation": "${version}",
"push": true,
"pushArgs": ["--follow-tags"]
},
"npm": {
"publish": true,
"publishPath": ".",
"publishArgs": [],
"tag": null,
"otp": null,
"ignoreVersion": true,
"skipChecks": false,
"timeout": 10
},
"github": {
"release": true,
"releaseName": "${version}",
"releaseNotes": "git log --pretty=format:\"* %s (%h)\" ${latestTag}...HEAD",
"preRelease": false,
"draft": false,
"skipChecks": false,
"web": true
}
}