googleapis / googleapis/release-please
FR: group changelog commits by type and scope
- Dominant language
- TypeScript
- Stars
- 7.5k
- Forks
- 588
- Avg merge
- 12h 16m
- Merged PRs (30d)
- 7
Description
**Is your feature request related to a problem? Please describe.**
There is currently a way to group commits into changelog sections by the type of the commit, but not the scope.
**Describe the solution you'd like**
A way to group commits by both type _and_ scope, like so:
```json
{
"changelog-sections": [
{ "type": "feat", "section": "✨ Features" },
{ "type": "fix", "section": "🐛 Bug Fixes" },
{ "type": "perf", "section": "⚡ Performance Improvements" },
{ "type": "chore", "section": "🔧 Other Changes" },
{ "type": "chore", "scope": "deps", "section": "📦 Dependencies" }
]
}
```
The above configuration would create a separate section in the changelog for any commits detected to be of the signature `chore(deps)`.
Contributor guide
Assessment
This issue has not been assessed yet.