Skip to content

Commit

Permalink
build(repo): Fix changelog commit parsers
Browse files Browse the repository at this point in the history
  • Loading branch information
pedronauck committed Jan 26, 2025
1 parent 996476c commit e8d5071
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .taplo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[formatting]
align_comments = true
align_entries = false
reorder_arrays = true
reorder_arrays = false
reorder_keys = false

[[rule]]
Expand Down
12 changes: 6 additions & 6 deletions release-plz.toml
Original file line number Diff line number Diff line change
Expand Up @@ -156,14 +156,14 @@ Want to contribute? Check out our [CONTRIBUTING.md](./CONTRIBUTING.md) guide!\n
"""

commit_parsers = [
{ message = "^.*", group = "<!-- 8 -->πŸ“‹ Other" },
{ message = "^build", group = "<!-- 5 -->πŸ—οΈ Build" },
{ message = "^ci", group = "<!-- 7 -->πŸ“Ÿ CI" },
{ message = "^ci\\(release\\)", skip = true },
{ message = "^docs", group = "<!-- 3 -->πŸ“š Documentation" },
{ message = "^feat", group = "<!-- 0 -->⭐ Features" },
{ message = "^fix", group = "<!-- 1 -->πŸ› Bug Fixes" },
{ message = "^perf", group = "<!-- 4 -->πŸš€ Performance" },
{ message = "^refactor", group = "<!-- 2 -->πŸ”„ Refactor" },
{ message = "^docs", group = "<!-- 3 -->πŸ“š Documentation" },
{ message = "^perf", group = "<!-- 4 -->πŸš€ Performance" },
{ message = "^build", group = "<!-- 5 -->πŸ—οΈ Build" },
{ message = "^test", group = "<!-- 6 -->πŸ§ͺ Testing" },
{ message = "^ci", group = "<!-- 7 -->πŸ“Ÿ CI" },
{ message = "^ci\\(release\\)", skip = true },
{ message = "^.*", group = "<!-- 8 -->πŸ“‹ Other" },
]

0 comments on commit e8d5071

Please sign in to comment.