File tree Expand file tree Collapse file tree 1 file changed +58
-0
lines changed Expand file tree Collapse file tree 1 file changed +58
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "git" : {
3+ "requireCleanWorkingDir" : true ,
4+ "requireBranch" : false ,
5+ "requireUpstream" : true ,
6+ "requireCommits" : false ,
7+ "addUntrackedFiles" : false ,
8+ "commit" : true ,
9+ "commitMessage" : " Release ${version}" ,
10+ "commitArgs" : [],
11+ "tag" : true ,
12+ "tagName" : null ,
13+ "tagMatch" : null ,
14+ "tagAnnotation" : " Release ${version}" ,
15+ "tagArgs" : [],
16+ "push" : true ,
17+ "pushArgs" : [
18+ " --follow-tags"
19+ ],
20+ "pushRepo" : " " ,
21+ "changelog" : " npx auto-changelog --stdout --commit-limit false -u --template https://raw.githubusercontent.com/release-it/release-it/master/templates/changelog-compact.hbs"
22+ },
23+ "github" : {
24+ "release" : true ,
25+ "releaseName" : " Release ${version}" ,
26+ "releaseNotes" : null ,
27+ "autoGenerate" : false ,
28+ "preRelease" : false ,
29+ "draft" : false ,
30+ "tokenRef" : " GITHUB_TOKEN" ,
31+ "assets" : null ,
32+ "host" : null ,
33+ "timeout" : 0 ,
34+ "proxy" : null ,
35+ "skipChecks" : false ,
36+ "web" : false
37+ },
38+ "plugins" : {
39+ "@j-ulrich/release-it-regex-bumper" : {
40+ "out" : [
41+ {
42+ "files" : [
43+ " setup.cfg"
44+ ],
45+ "search" : " \\ d+\\ .\\ d+\\ .\\ d+" ,
46+ "replace" : " {{version}}"
47+ },
48+ {
49+ "files" : [
50+ " setup.cfg"
51+ ],
52+ "search" : " v\\ d+\\ .\\ d+\\ .\\ d+" ,
53+ "replace" : " v{{version}}"
54+ }
55+ ]
56+ }
57+ }
58+ }
You can’t perform that action at this time.
0 commit comments