From c015d0feeed35b34d84558a8e4a49549b3b67781 Mon Sep 17 00:00:00 2001 From: kylo252 <59826753+kylo252@users.noreply.github.com> Date: Mon, 17 Oct 2022 17:43:30 +0200 Subject: chore: update changelog --- .github/workflows/cliff.toml | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) (limited to '.github') diff --git a/.github/workflows/cliff.toml b/.github/workflows/cliff.toml index a183df33..7f02201b 100644 --- a/.github/workflows/cliff.toml +++ b/.github/workflows/cliff.toml @@ -48,17 +48,18 @@ commit_preprocessors = [ { pattern = '\((\w+\s)?#([0-9]+)\)', replace = "([#${2}](https://github.com/lunarvim/lunarvim/pull/${2}))"}, ] commit_parsers = [ - { message = "(.*bump|.*Bump)", group = " Miscellaneous Tasks", skip = true}, - { message = "^build", group = " Packaging"}, - { message = "(^feat|^Feat|^\\[Feat)", group = " Features"}, - { message = "(^bug|^Bug|^fix|^\\[Bug)", group = " Bugfix"}, - { message = "(^refactor|^ref)", group = " Refactor"}, - { message = "^doc", group = " Documentation"}, - { message = "^revert", group = " Revert"}, - { message = "^perf", group = " Performance"}, - { message = "^chore", group = " Miscellaneous Tasks", skip = true}, + { message = "(.*[bB]ump)", group = " Miscellaneous Tasks", skip = true}, + { message = "^[bB]uild", group = " Packaging"}, + { message = "(^[fF]eat|^\\[Feat)", group = " Features"}, + { message = "(^[bB]ug|^[Ff]ix|^\\[Bug)", group = " Bugfix"}, + { message = "(^[rR]efactor|^ref)", group = " Refactor"}, + { message = "^[dD]oc", group = " Documentation"}, + { message = "^[rR]evert", group = " Revert"}, + { message = "^[pP]erf", group = " Performance"}, + { message = "^[cC]hore", group = " Miscellaneous Tasks", skip = true}, { message = "^ci", group = " Miscellaneous Tasks", skip = true}, { message = "^test", group = " Miscellaneous Tasks", skip = true}, + { message = "[wW]orkflow", group = " Miscellaneous Tasks", skip = true}, ] # filter out the commits that are not matched by commit parsers filter_commits = false @@ -72,6 +73,8 @@ ignore_tags = "" topo_order = false # sort the commits inside sections by oldest/newest order sort_commits = "oldest" +# protect breaking changes from being skipped due to matching a skipping commit_parser +protect_breaking_commits = false [features] preserve_order = ["serde_json/preserve_order"] -- cgit v1.2.3