From 0b0708c53f32bacfaabbc500aae5c719cd619a53 Mon Sep 17 00:00:00 2001 From: Christian Rackerseder Date: Sun, 16 Jul 2023 12:35:09 +0200 Subject: [PATCH] Configure release changelog --- .release-it.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.release-it.json b/.release-it.json index d402e01b..148ac522 100644 --- a/.release-it.json +++ b/.release-it.json @@ -2,7 +2,8 @@ "git": { "requireBranch": "main", "commitMessage": "Release v${version}", - "tagName": "v${version}" + "tagName": "v${version}", + "changelog": "npx auto-changelog --stdout --commit-limit false -u --template https://raw.githubusercontent.com/release-it/release-it/main/templates/changelog-compact.hbs" }, "github": { "release": true, @@ -18,6 +19,7 @@ "npm run copy:paste:detection", "npm run test:unit:coverage", "npm run test:integration" - ] + ], + "after:bump": "npx auto-changelog -p" } }