semantic-release / release-notes-generator

:clipboard: semantic-release plugin to generate changelog content with conventional-changelog
MIT License
298 stars 47 forks source link

Question: how can i gruop no-scope commits on a section in release notes generator configuration ? #611

Open braybatista opened 3 months ago

braybatista commented 3 months ago

im using this configuration that group certain types of scoped commits but i need to group the non-scoped commits example non scoped message --> "commit message: this is an non scoped message for this commit", example scoped message --> "commit message: feat: adding example scoped message for this commit" i need to group non scoped messages in release note generator section. ¿is it posibble? configuration: [ "@semantic-release/release-notes-generator", { "preset": "conventionalcommits", "presetConfig": { "types": [ { "type": "breaking", "section": "Major version release", "hidden": false }, { "type": "BREAKING", "section": "Major version release", "hidden": false }, { "type": "BREAKING CHANGE", "section": "Major version release", "hidden": false }, { "type": "BREAKING CHANGES", "section": "Major version release", "hidden": false }, { "type": "feat", "section": "Features", "hidden": false }, { "type": "fix", "section": "Bug Fixes", "hidden": false }, { "type": "hotfix", "section": "Bug Fixes", "hidden": false }, { "type": "update", "section": "Updates", "hidden": false }, { "type": "upgrade", "section": "Upgrades", "hidden": false }, { "type": "docs", "section": "Documentation", "hidden": false }, { "type": "chore", "section": "Chores", "hidden": false }, { "type": "build", "section": "CI/CD Changes", "hidden": false }, { "type": "ci", "section": "CI/CD Changes", "hidden": false }, { "type": "test", "section": "Tests", "hidden": false }, { "type": "refactor", "section": "Refactoring", "hidden": false }, { "type": "perf", "section": "Performance Improvements", "hidden": false } ] }, "writerOpts": { "commitsSort": ["subject", "scope"] } } ]