chore: update gitmessage template

This commit is contained in:
Stephan Lüscher 2024-04-30 18:53:23 +00:00
parent d677d7b305
commit 842a6a1bdd
No known key found for this signature in database
GPG key ID: 445779060FF3D3CF

View file

@ -1,19 +1,24 @@
<type>(optional scope): <description> <type>(optional scope): <description> (optional #<issue-id>)
[optional body] [optional body]
[optional footer(s)] [optional footer(s)]
#### ####
# Allowed <type> values # The CHANGELOG.md is built automatically according to the commit
# --------------------- # messages. Commit messages that are not matched will be ignored!
# feat: > A new feature #
# fix: > Fixed a bug # Supported <type> values
# refactor: > A code change that's not mainly a bug or new feature # -----------------------
# docs: > Documentation only changes # feat: --> Features
# style: > Changes to styling like white space, formatting, semi-colons) # fix: --> Bug Fixes
# chore: > Other changes that don't modify src or test files # doc: --> Documentation
# ci: > Changes made to the CI configuration like Travis, Circle, Actions # refactor: --> Refactor
# revert: > Revert a previous commit # style: --> Styling
# test: > Add or fix tests # test: --> Testing
# chore: --> Miscellaneous Tasks
# ci --> CI/CD configuration
# revert: --> Revert
#
## Example: feat(parser): add ability to parse arrays
#
#### ####