Skip to content

Commit

Permalink
feat(ci): Add updates and refactors to changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
crimera committed Apr 8, 2024
1 parent 9195e54 commit 5fb8ef7
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 4 deletions.
20 changes: 17 additions & 3 deletions .releaserc
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,30 @@
}
],
"plugins": [
[
"@semantic-release/commit-analyzer", {
["@semantic-release/commit-analyzer", {
"releaseRules": [
{ "type": "fix", "release": "patch" },
{ "type": "feat", "release": "minor" },
{ "type": "update", "release": "patch" },
{ "type": "refactor", "release": "patch" },
{ "type": "build", "scope": "Needs bump", "release": "patch" }
]
}
],
"@semantic-release/release-notes-generator",
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits",
"presetConfig": {
"types": [
{ type: "fix", section: "Bug Fixes", hidden: false },
{ type: "feat", section: "Features", hidden: false },
{ type: "update", section: "Updates", hidden: false },
{ type: "refactor", section: "Refactors", hidden: false },
]
}
}
],
"@semantic-release/changelog",
"gradle-semantic-release-plugin",
[
Expand Down
15 changes: 14 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"@saithodev/semantic-release-backmerge": "^4.0.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"conventional-changelog-conventionalcommits": "^7.0.2",
"gradle-semantic-release-plugin": "^1.9.1",
"semantic-release": "^23.0.6"
}
Expand Down

0 comments on commit 5fb8ef7

Please sign in to comment.