File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,6 +14,13 @@ trim = true
1414conventional_commits = true
1515filter_unconventional = true
1616commit_parsers = [
17+ # Release-automation commits (mark-api-shipped, version-bump, and baseline-propagation PRs) are
18+ # process noise in consumer-facing notes. Parsers are first-match-wins, so these skips must stay
19+ # above the generic ^chore parser; the patterns anchor to the exact commit-message templates in
20+ # release.yml and version-bump.yml.
21+ { message = " ^chore: mark public API shipped" , skip = true },
22+ { message = " ^chore: bump version to" , skip = true },
23+ { message = " ^chore: validate packages against" , skip = true },
1724 { message = " ^feat" , group = " Features" },
1825 { message = " ^fix" , group = " Bug Fixes" },
1926 { message = " ^docs" , group = " Documentation" },
You can’t perform that action at this time.
0 commit comments