forked from w3c/browser-specs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.release-it.json
16 lines (16 loc) · 1012 Bytes
/
.release-it.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"hooks": {
"after:init": ["npm test", "npm run lint"],
"after:bump": "npx auto-changelog --package --commit-limit false --template src/changelog.hbs --commit-url https://github.com/w3c/browser-specs/commit/{id} --issue-url https://github.com/w3c/browser-specs/issues/{id} --merge-url https://github.com/w3c/browser-specs/pull/{id} --compare-url https://github.com/w3c/browser-specs/compare/{from}...{to}"
},
"git": {
"commitMessage": "v${version}",
"tagAnnotation": "v${version}",
"pushRepo": "git@github.com:w3c/browser-specs.git",
"changelog": "npx auto-changelog --stdout --commit-limit false --unreleased --template src/changelog-release.hbs --commit-url https://github.com/w3c/browser-specs/commit/{id} --issue-url https://github.com/w3c/browser-specs/issues/{id} --merge-url https://github.com/w3c/browser-specs/pull/{id} --compare-url https://github.com/w3c/browser-specs/compare/{from}...{to}"
},
"github": {
"release": true,
"releaseName": "v${version}"
}
}