generated from TOKTOKHAN-DEV/next-init-2.0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.releaserc
42 lines (42 loc) · 1.14 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
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"branches": [
"main",
{
"name": "beta",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
"@semantic-release/git",
"@semantic-release/github",
[
"semantic-release-slack-bot",
{
"slackIcon": ":drum_with_drumsticks:",
"slackName": "똑똑-next-init",
"notifyOnSuccess": true,
"notifyOnFail": true,
"markdownReleaseNotes": true,
"onSuccessTemplate": {
"text": "새로운 버젼의 `$package_name`가 배포 되었습니다!\n최신 버젼은 *$npm_package_version* 입니다.\n\n>:package:*Repo:* *<$repo_url|$repo_path>*\n>:notebook_with_decorative_cover:*Release Note:* *<$repo_url/releases/tag/v$npm_package_version|v$npm_package_version>*\n\n$release_notes"
},
"branchesConfig": [
{
"pattern": "main",
"notifyOnSuccess": true,
"notifyOnFail": true
}
]
}
]
]
}