-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.releaserc
More file actions
30 lines (30 loc) · 942 Bytes
/
.releaserc
File metadata and controls
30 lines (30 loc) · 942 Bytes
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
{
"debug": true,
"branches": [ "main" ],
"plugins": [
["@semantic-release/commit-analyzer", {
"preset": "angular",
"releaseRules": [
{"type": "release","release": "patch"},
{"type": "major","release": "major"},
{"type": "minor","release": "minor"},
{"type": "patch","release": "patch"}
]}],
"@semantic-release/release-notes-generator",
[
"@semantic-release/exec",
{
"verifyReleaseCmd": "echo \"Verifying release ${nextRelease.version}\"",
"prepareCmd": "bump-my-version bump ${nextRelease.type} --allow-dirty --new-version ${nextRelease.version}"
}
],
[
"@semantic-release/git",
{
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}",
"assets": ["pyproject.toml", "ibm_secrets_manager_sdk/version.py"]
}
],
"@semantic-release/github"
]
}