Skip to content

Commit

Permalink
style: style cliff and changelog.md (#8)
Browse files Browse the repository at this point in the history
ImSoZRious authored Dec 25, 2023
1 parent a617f5d commit 5f036f5
Showing 2 changed files with 21 additions and 18 deletions.
17 changes: 10 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -4,19 +4,22 @@ All notable changes to this project will be documented in this file.

## [unreleased]

### Bug Fixes
### ⚙️ Miscellaneous Tasks

- Query not using key
- Setup `CHANGELOG.md`
- Update contribution
- Dockerfile and docker compose (#5)
- CI (#6)

### Features
### ⛰️ Features

- Init
- Event detail feature (#2)
- [**breaking**] Add `extra_info` on feature_flag
- [**breaking**] Add `extra_info` on feature_flag (#3)

### Miscellaneous Tasks
### 🐛 Bug Fixes

- Setup `CHANGELOG.md`
- Update contribution
- Query not using key
- Golangci-lint timeout (#7)

<!-- generated by git-cliff -->
22 changes: 11 additions & 11 deletions cliff.toml
Original file line number Diff line number Diff line change
@@ -34,7 +34,7 @@ footer = """
"""
# postprocessors
postprocessors = [
# { pattern = '<REPO>', replace = "https://github.com/orhun/git-cliff" }, # replace repository URL
{ pattern = '<REPO>', replace = "https://github.com/isd-sgcu/oph66-backend" }, # replace repository URL
]
[git]
# parse the commits based on https://www.conventionalcommits.org
@@ -49,20 +49,20 @@ commit_preprocessors = [
]
# regex for parsing and grouping commits
commit_parsers = [
{ message = "^feat", group = "Features" },
{ message = "^fix", group = "Bug Fixes" },
{ message = "^doc", group = "Documentation" },
{ message = "^perf", group = "Performance" },
{ message = "^refactor", group = "Refactor" },
{ message = "^style", group = "Styling" },
{ message = "^test", group = "Testing" },
{ message = "^feat", group = "⛰️ Features" },
{ message = "^fix", group = "🐛 Bug Fixes" },
{ message = "^doc", group = "📚 Documentation" },
{ message = "^perf", group = "Performance" },
{ message = "^refactor", group = "🚜 Refactor" },
{ message = "^style", group = "🎨 Styling" },
{ message = "^test", group = "🧪 Testing" },
{ message = "^chore\\(release\\): prepare for", skip = true },
{ message = "^chore\\(deps\\)", skip = true },
{ message = "^chore\\(pr\\)", skip = true },
{ message = "^chore\\(pull\\)", skip = true },
{ message = "^chore|ci", group = "Miscellaneous Tasks" },
{ body = ".*security", group = "Security" },
{ message = "^revert", group = "Revert" },
{ message = "^chore|ci", group = "⚙️ Miscellaneous Tasks" },
{ body = ".*security", group = "🛡️ Security" },
{ message = "^revert", group = "◀️ Revert" },
]
# protect breaking changes from being skipped due to matching a skipping commit_parser
protect_breaking_commits = false

0 comments on commit 5f036f5

Please sign in to comment.