Skip to content

Commit

Permalink
refactor(releaserc): remove default options (#177)
Browse files Browse the repository at this point in the history
Co-authored-by: Nikita Almanov <131481562+nikkeyl@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and nikkeyl authored Jan 23, 2024
1 parent 8c3ea59 commit b9fdde9
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions .releaserc.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits",
"releaseRules": [
{
"tag": "build",
Expand Down Expand Up @@ -59,7 +58,17 @@
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits",
"presetConfig": {
"types": [
{ "type": "docs", "section": "Documentation" },
{ "type": "style", "section": "Styles" },
{ "type": "chore", "section": "Miscellaneous Chores" },
{ "type": "refactor", "section": "Code Refactoring" },
{ "type": "test", "section": "Tests" },
{ "type": "build", "section": "Build System" },
{ "type": "ci", "section": "Continuous Integration" }
]
},
"writerOpts": {
"commitsSort": ["scope", "subject"]
}
Expand All @@ -71,13 +80,8 @@
"changelogTitle": "# Changelog"
}
],
[
"@semantic-release/git",
{
"assets": ["CHANGELOG.md"],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/git",
"@semantic-release/github"
]
],
"preset": "conventionalcommits"
}

0 comments on commit b9fdde9

Please sign in to comment.