Skip to content

Commit

Permalink
feat: testing release note generator Update .releaserc
Browse files Browse the repository at this point in the history
  • Loading branch information
braybatista authored Mar 8, 2024
1 parent 47f67a8 commit 58ea03e
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion .releaserc
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,28 @@
]
}
],
"@semantic-release/release-notes-generator",
[
"@semantic-release/release-notes-generator",
{
presetConfig: {
types: [
{ "type": "BREAKING CHANGE", "section": "Major version release" },
{ "type": "breaking change", "section": "Major version release" },
{ type: "feat", section: "Features" },
{ type: "fix", section: "Bug Fixes" },
{ type: "hotfix", section: "Bug Fixes" },
{ type: "docs", section: "Docs" },
{ type: "refactor", section: "Refactoring" },
{ type: "perf", section: "Performance Improvements" },
{ type: "ci", section: "CI/CD Changes" },
{ type: "test", section: "Tests" },
],
},
writerOpts: {
commitsSort: ["subject", "scope"],
},
},
],
"@semantic-release/github"
]
}

0 comments on commit 58ea03e

Please sign in to comment.