Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .chglog/CHANGELOG.tpl.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
{{ end -}}

{{- if .MergeCommits -}}
### Merged features
### Pull Requests
{{ range .MergeCommits -}}
- {{ .Header }}
{{ end }}
Expand Down
29 changes: 13 additions & 16 deletions .chglog/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,21 @@ style: github
template: CHANGELOG.tpl.md
info:
title: CHANGELOG
repository_url: https://git.pride.improwised.dev/Improwised/jovvix
repository_url: https://github.com/Improwised/jovVix
options:
commits:
filters:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggestions:

Title Maps/Filtering: By commenting out the commit filters and title maps in config.yml, the changelog might include noisy or less relevant commits (e.g., docs, ci, etc.). Consider re-enabling these with updated commit types as your workflow matures.

Template Comments : The config.yml now has commented sections for filters and title maps. If these are not needed, consider removing them entirely for clarity.

Type:
- feat
- fix
- test
- chore
- refactor
group_by: "Type" # Group commits by their type
# filters:
# Type:
# - feat
# - fix
# - perf
# - refactor
commit_groups:
title_maps:
feat: Features # Maps "feat" commits to "Features"
fix: Bug Fixes # Maps "fix" commits to "Bug Fixes"
test: Test Cases # Maps "test" commits to "Test Cases"
chore: Improvements # Maps "chore" commits to "Improvements"
refactor: Code Refactoring # Maps "refactor" commits to "Code Refactoring"
# title_maps:
# feat: Features
# fix: Bug Fixes
# perf: Performance Improvements
# refactor: Code Refactoring
header:
pattern: "^(\\w*)(?:\\(([\\w\\$\\.\\-\\*\\s]*)\\))?\\:\\s(.*)$"
pattern_maps:
Expand All @@ -28,4 +25,4 @@ options:
- Subject
notes:
keywords:
- BREAKING CHANGE
- BREAKING CHANGE
Loading