Skip to content

Commit

Permalink
feat(cliff): Add "revert" & "chore" commit detection for changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
DamChtlv authored May 7, 2024
1 parent db98583 commit b041b75
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,13 @@ commit_parsers = [
{ message = "^feat", group = "<!-- 0 -->🚀 Features" },
{ message = "^fix", group = "<!-- 1 -->🐛 Bugs fixed" },
{ message = "^ticket", group = "<!-- 2 -->🚜 Ticket" },
{ message = "^(update|refact|maj)$", group = "<!-- 6 -->🔨 Refactor / Update" },
{ message = "^update|^refact|^maj", group = "<!-- 6 -->🔨 Update" },
{ message = "^docs", group = "<!-- 3 -->📚 Documentation" },
{ message = "^init", group = "<!-- 4 -->💡 Initialisation" },
{ message = "^style", group = "<!-- 5 -->🎨 Style" },
{ message = "^test", group = "<!-- 7 -->🧪 Testing" },
{ message = "^chore|^ci", group = "<!-- 8 -->⚙️ Miscellaneous Tasks (CI...)" },
{ message = "^revert", group = "<!-- 9 -->◀️ Revert" },
]
# protect breaking changes from being skipped due to matching a skipping commit_parser
protect_breaking_commits = false
Expand Down

0 comments on commit b041b75

Please sign in to comment.