From 998c22b0e759f8a0ab639c5742ea5fc543617e7f Mon Sep 17 00:00:00 2001 From: Thomas Boerger Date: Fri, 30 Jun 2023 08:33:24 +0200 Subject: [PATCH] ci: fix scopes for release-notes-generator --- .releaserc | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/.releaserc b/.releaserc index 7e69728..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