Skip to content

Commit

Permalink
build(releaserc): add .releaserc file
Browse files Browse the repository at this point in the history
Add .releaserc file with the release configurations for semantic-release

Signed-off-by: Niloy Sikdar <[email protected]>
  • Loading branch information
niloysikdar committed Oct 6, 2022
1 parent ee5f77d commit 4930221
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .releaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"releaseRules": [
{
"type": "docs",
"scope": "README",
"release": "patch"
}
]
}
],
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
"@semantic-release/npm",
[
"@semantic-release/github",
{
"successComment": "🎉 This PR is included in version ${nextRelease.version} 🎉",
"addReleases": "bottom"
}
],
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}

0 comments on commit 4930221

Please sign in to comment.