File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33All notable changes to this project will be documented in this file.
44
5+ # [ 1.2.2] ( https://github.com/leoweyr/github-release-workflow/compare/v1.2.1...v1.2.2 ) (2026-05-12)
6+ ### Bug Fixes
7+
8+ * ** cliff:** support multiline revert commit messages ([ 74731d3] ( https://github.com/leoweyr/github-release-workflow/commit/74731d392a5bc0818f55e2149e7e25d36e3991c5 ) ) [ @leoweyr ] ( https://github.com/leoweyr )
9+
10+
11+
512# [ 1.2.1] ( https://github.com/leoweyr/github-release-workflow/compare/v1.2.0...v1.2.1 ) (2026-04-23)
613### Bug Fixes
714
Original file line number Diff line number Diff line change @@ -60,12 +60,12 @@ conventional_commits = true
6060filter_unconventional = true
6161split_commits = false
6262commit_preprocessors = [
63- { pattern = ' ^Revert "([a-z]+)(\((.+)\))?: (.+)"$ ' , replace = " revert($1:$3) : $4" },
64- { pattern = ' ^Revert "([a-z]+): (.+)"$ ' , replace = " revert($1) : $2" },
63+ { pattern = ' ^Revert "([a-z]+)(\((.+)\))?: (.+)"' , replace = " revert: $1$2 : $4" },
64+ { pattern = ' ^Revert "([a-z]+): (.+)"' , replace = " revert: $1 : $2" },
6565]
6666
6767commit_parsers = [
68- { message = " ^revert" , group = " Revert" },
68+ { message = " ^(?i) revert" , group = " Revert" },
6969 { message = " ^fix" , group = " Bug Fixes" },
7070 { message = " ^feat" , group = " Features" },
7171 { message = " ^perf" , group = " Performance" },
You can’t perform that action at this time.
0 commit comments