Skip to content

Commit

Permalink
ci: fix scopes for release-notes-generator
Browse files Browse the repository at this point in the history
  • Loading branch information
tboerger committed Jun 30, 2023
1 parent aaf3dc2 commit e94b124
Showing 1 changed file with 19 additions and 4 deletions.
23 changes: 19 additions & 4 deletions .releaserc
Original file line number Diff line number Diff line change
Expand Up @@ -53,25 +53,40 @@
"presetConfig": {
"types": [
{
"type": "feat",
"type": "major",
"section": "Features"
},
{
"type": "major",
"type": "deps",
"scope": "major",
"section": "Features"
},
{
"type": "minor",
"section": "Features"
},
{
"type": "fix",
"section": "Bugfixes"
"type": "deps",
"scope": "minor",
"section": "Features"
},
{
"type": "patch",
"section": "Bugfixes"
},
{
"type": "deps",
"scope": "patch",
"section": "Bugfixes"
},
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bugfixes"
},
{
"type": "chore",
"hidden": true
Expand Down

0 comments on commit e94b124

Please sign in to comment.