Merge pull request #1037 from SAP/dependabot/github_actions/pnpm/action-setup-4
[e-mobility-charging-stations-simulator.git] / .release-it.json
1 {
2 "git": {
3 "requireBranch": "main",
4 "changelog": "npx auto-changelog --stdout --commit-limit false --unreleased --template https://raw.githubusercontent.com/release-it/release-it/master/templates/changelog-compact.hbs",
5 "commitMessage": "chore: version ${version}",
6 "tagAnnotation": "Version ${version}",
7 "tagExclude": "*[-]*",
8 "pushRepo": "origin"
9 },
10 "npm": {
11 "publish": false
12 },
13 "github": {
14 "release": true,
15 "releaseName": "Version ${version}"
16 },
17 "plugins": {
18 "@release-it/bumper": {
19 "out": ["sonar-project.properties"]
20 }
21 },
22 "hooks": {
23 "after:bump": "npx auto-changelog --commit-limit false --package --template https://raw.githubusercontent.com/release-it/release-it/master/templates/keepachangelog.hbs"
24 }
25 }