Skip to content
This repository has been archived by the owner on Jun 13, 2023. It is now read-only.

Commit

Permalink
feat(release): add smart release note
Browse files Browse the repository at this point in the history
refs: #16
  • Loading branch information
mbarre committed Jul 6, 2022
1 parent 2236572 commit 91bba05
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions .releaserc
Expand Up @@ -11,6 +11,60 @@
"publishCmd": "mvn -B source:jar deploy -DskipTests && mkdir release && cp target/phonenumber-validator*.jar release"
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits",
"presetConfig": {
"types": [
{
"type": "feat",
"section": ":rocket: Features",
"hidden": false
},
{
"type": "fix",
"section": ":bug: Bug Fixes",
"hidden": false
},
{
"type": "docs",
"section": ":memo: Documentation",
"hidden": false
},
{
"type": "style",
"section": ":barber: Stylisation",
"hidden": false
},
{
"type": "refactor",
"section": ":zap: Refactor",
"hidden": false
},
{
"type": "perf",
"section": ":fast_forward: Performances",
"hidden": false
},
{
"type": "test",
"section": ":white_check_mark: Tests",
"hidden": false
},
{
"type": "ci",
"section": ":repeat: CI",
"hidden": false
},
{
"type": "chore",
"hidden": true
}
]
}
}
],
[
"@semantic-release/github",
{
Expand Down

0 comments on commit 91bba05

Please sign in to comment.