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 7be162b commit e61bf96
Showing 1 changed file with 21 additions and 5 deletions.
26 changes: 21 additions & 5 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 All @@ -97,7 +112,8 @@
[
"@semantic-release/git",
{
"message": "chore: release ${nextRelease.version}"
"message": "chore: release ${nextRelease.version} [skip ci]",
"assets": ["CHANGELOG.md"]
}
],
[
Expand Down

0 comments on commit e61bf96

Please sign in to comment.