Skip to content

Commit

Permalink
chore(ci): Add more commit parsers for changelog generation (atsamd-r…
Browse files Browse the repository at this point in the history
  • Loading branch information
jbeaurivage committed Nov 15, 2024
1 parent fa2ae97 commit c07a797
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .release-plz.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,17 @@ release_always = false

[changelog]
protect_breaking_commits = true

commit_parsers = [
{ message = "^feat", group = "added" },
{ message = "^changed", group = "changed" },
{ message = "^deprecated", group = "deprecated" },
{ message = "^fix", group = "fixed" },
{ message = "^security", group = "security" },
{ message = "^deps", group = "dependencies" },
{ message = "^removed", group = "removed" },
{ message = "^docs", group = "documentation" },
{ message = "^refactor", group = "refactored" },
{ message = "^style", group = "formatted" },
{ message = "^.*", group = "other" },
]

0 comments on commit c07a797

Please sign in to comment.