From e61bf96dc8339d3ac08ec22a1c30841e4dc5120a Mon Sep 17 00:00:00 2001 From: Thomas Boerger Date: Fri, 30 Jun 2023 08:38:28 +0200 Subject: [PATCH] ci: fix scopes for release-notes-generator --- .releaserc | 26 +++++++++++++++++++++----- 1 file changed, 21 insertions(+), 5 deletions(-) diff --git a/.releaserc b/.releaserc index 931e0d2..3695196 100644 --- a/.releaserc +++ b/.releaserc @@ -53,11 +53,12 @@ "presetConfig": { "types": [ { - "type": "feat", + "type": "major", "section": "Features" }, { - "type": "major", + "type": "deps", + "scope": "major", "section": "Features" }, { @@ -65,13 +66,27 @@ "section": "Features" }, { - "type": "fix", - "section": "Bugfixes" + "type": "deps", + "scope": "minor", + "section": "Features" }, { "type": "patch", "section": "Bugfixes" }, + { + "type": "deps", + "scope": "patch", + "section": "Bugfixes" + }, + { + "type": "feat", + "section": "Features" + }, + { + "type": "fix", + "section": "Bugfixes" + }, { "type": "chore", "hidden": true @@ -97,7 +112,8 @@ [ "@semantic-release/git", { - "message": "chore: release ${nextRelease.version}" + "message": "chore: release ${nextRelease.version} [skip ci]", + "assets": ["CHANGELOG.md"] } ], [