-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.releaserc
29 lines (29 loc) · 1.04 KB
/
.releaserc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"branches": ["master", "next", "english-codebase"],
"plugins": [
[
"@semantic-release/commit-analyzer", {
"preset": "conventionalcommits",
}
],
[
"@semantic-release/release-notes-generator", {
"preset": "conventionalcommits",
}
],
[
"@semantic-release/changelog",
{
"changelogTitle": "# Changelog - Because We Love Changes\n\nGreetings, dear user! 🎉 Here's a dazzling list of changes and updates. Brace yourself, for the excitement is overwhelming.. See\n[Conventional Commits](https://conventionalcommits.org) for commit guidelines.",
"changelogFile": "CHANGELOG.md"
}
],
[
"@semantic-release/git",
{
"message": "chore: Release ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}",
"assets": ["CHANGELOG.md"]
}
]
]
}