From dd1ad34317215a16178fc6bf5de04146358e29aa Mon Sep 17 00:00:00 2001 From: Gustavo Carreno Date: Thu, 23 Oct 2025 18:19:17 +0100 Subject: [PATCH] ci: New category: Enhancements --- .github/cliff.toml | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/.github/cliff.toml b/.github/cliff.toml index 595bb2b2..80f38111 100644 --- a/.github/cliff.toml +++ b/.github/cliff.toml @@ -1,6 +1,6 @@ [remote.github] -owner = "gcarreno" -repo = "gcarreno-HeidiSQL" +owner = "HeidiSQL" +repo = "HeidiSQL" [changelog] # A Tera template to be rendered as the changelog's header. @@ -84,7 +84,7 @@ trim = true # An array of regex based postprocessors to modify the changelog. postprocessors = [ # Replace the placeholder `` with a URL. - { pattern = '', replace = "https://github.com/gcarreno/gcarreno-HeidiSQL" }, # replace repository URL + { pattern = '', replace = "https://github.com/HeidiSQL/HeidiSQL" }, # replace repository URL ] [git] @@ -108,22 +108,23 @@ commit_preprocessors = [ # Optionally sets the commit's scope and can decide to exclude commits from further processing. commit_parsers = [ { message = "^feat", group = "โ›ฐ๏ธ Features" }, - { message = "^fix", group = "๐Ÿ› Bug Fixes" }, - { message = "^doc", group = "๐Ÿ“š Documentation" }, - { message = "^perf", group = "โšก Performance" }, + { message = "^enhance", group = "๐Ÿš€ Enhancements" }, + { message = "^fix", group = "๐Ÿ› Bug Fixes" }, + { message = "^doc", group = "๐Ÿ“š Documentation" }, + { message = "^perf", group = "โšก Performance" }, { message = "^refactor\\(clippy\\)", skip = true }, - { message = "^refactor", group = "๐Ÿšœ Refactor" }, - { message = "^style", group = "๐ŸŽจ Styling" }, - { message = "^test", group = "๐Ÿงช Testing" }, + { message = "^refactor", group = "๐Ÿšœ Refactor" }, + { message = "^style", group = "๐ŸŽจ Styling" }, + { message = "^test", group = "๐Ÿงช Testing" }, { message = "^chore\\(release\\): prepare for", skip = true }, { message = "^chore\\(deps.*\\)", skip = true }, { message = "^chore\\(pr\\)", skip = true }, { message = "^chore\\(pull\\)", skip = true }, { message = "^chore\\(npm\\).*yarn\\.lock", skip = true }, - { message = "^chore|^ci", group = "โš™๏ธ Miscellaneous Tasks" }, - { message = "^revert", group = "โ—€๏ธ Revert" }, + { message = "^chore|^ci", group = "โš™๏ธ Miscellaneous Tasks" }, + { message = "^revert", group = "โ—€๏ธ Revert" }, { message = "^ign", skip = true}, - { body = ".*security", group = "๐Ÿ›ก๏ธ Security" }, + { body = ".*security", group = "๐Ÿ›ก๏ธ Security" }, ] # Prevent commits that are breaking from being excluded by commit parsers. protect_breaking_commits = false