-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy path.releaserc.json
More file actions
35 lines (35 loc) · 1.05 KB
/
.releaserc.json
File metadata and controls
35 lines (35 loc) · 1.05 KB
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
{
"branches": ["main"],
"plugins": [
["@semantic-release/commit-analyzer", {
"preset": "conventionalcommits"
}],
["@semantic-release/release-notes-generator", {
"preset": "conventionalcommits",
"presetConfig": {
"types": [
{"type": "feat", "section": "Features"},
{"type": "fix", "section": "Bug Fixes"},
{"type": "perf", "section": "Performance"},
{"type": "refactor", "section": "Refactors"},
{"type": "docs", "section": "Documentation"},
{"type": "chore", "hidden": true},
{"type": "ci", "hidden": true},
{"type": "style", "hidden": true},
{"type": "test", "hidden": true}
]
}
}],
["@semantic-release/exec", {
"prepareCmd": "echo ${nextRelease.version} > VERSION"
}],
["@semantic-release/git", {
"assets": ["VERSION"],
"message": "chore(release): ${nextRelease.version} [skip ci]"
}],
["@semantic-release/github", {
"successComment": false,
"failComment": false
}]
]
}