File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11
2- ## v0.7.29 — 2025-11-30
2+ ## v0.7.29 — 2025-12-02
33### Fixes
4- - force push when moving release tags (#239 )
5-
6-
7-
8- ## v0.7.29 — 2025-11-30
9- ### Fixes
10- - resolve type aliasing bug causing missed matches (#202 ) (#234 )
11- - retag merge commits so tags appear in main history (#235 )
12- - use angular parser for conventional commits (#236 )
13- - remove emoji parser config for angular parser (#237 )
4+ - resolve type aliasing bug causing missed matches in vectored scanning (#234 )
145
156## v0.7.28 — 2025-10-22
167### Docs
Original file line number Diff line number Diff line change @@ -10,6 +10,11 @@ skip_commit = [
1010]
1111commit_parsers = [
1212 { message = " ^feat" , group = " Features" },
13+ # Skip CI-scoped commits regardless of type (fix(ci), chore(ci), etc.)
14+ { message = " ^\\ w+\\ (ci\\ )" , skip = true },
15+ { message = " ^\\ w+\\ (publish\\ )" , skip = true },
16+ { message = " ^\\ w+\\ (release\\ )" , skip = true },
17+ { message = " ^\\ w+\\ (build\\ )" , skip = true },
1318 { message = " ^fix" , group = " Fixes" },
1419 { message = " ^perf" , group = " Performance" },
1520 { message = " ^refactor" , group = " Refactors" },
You can’t perform that action at this time.
0 commit comments