Skip to content

Commit

Permalink
🧹 chore: add config for auto submiting comments for pr and issues
Browse files Browse the repository at this point in the history
  • Loading branch information
stanleyugwu committed Oct 10, 2023
1 parent 865a113 commit 93d59f6
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,15 +97,21 @@
},
"release-it": {
"git": {
"commitMessage": "🧹 chore: release ${version}",
"tagName": "v${version}"
"commitMessage": "🧹✨ chore: release ${version}",
"tagName": "v${version}",
"requireBranch": "main"
},
"npm": {
"publish": true
},
"github": {
"release": true,
"releaseNotes": "git log --no-merges --pretty=format:\"* %s %h\" ${latestTag}...main"
"releaseNotes": "git log --no-merges --pretty=format:\"* %s %h\" ${latestTag}...main",
"comments": {
"submit": true,
"issue": ":rocket: _This issue has been resolved in v${version}. See [${releaseName}](${releaseUrl}) for release notes._",
"pr": ":rocket: _This pull request is included in v${version}. See [${releaseName}](${releaseUrl}) for release notes._"
}
},
"plugins": {
"@release-it/conventional-changelog": {
Expand Down

0 comments on commit 93d59f6

Please sign in to comment.