Skip to content

Commit

Permalink
chore(semver): add config to disable GitHub comments on releases (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomudding authored Nov 8, 2024
1 parent e2789b6 commit 152a4d8
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .releaserc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"branches": ["main"],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/github",
{
"successComment": false,
"failComment": false,
"failTitle": false,
"labels": false,
"releasedLabels": false
}
],
[
"@semantic-release/git",
{
"assets": ["package.json"],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}

0 comments on commit 152a4d8

Please sign in to comment.