Skip to content

Commit 9793c0c

Browse files
authored
ci: use release-please-config vs manifest (#490)
Put config settings in the config and only the version in the manifest.
1 parent 227aa40 commit 9793c0c

File tree

2 files changed

+26
-21
lines changed

2 files changed

+26
-21
lines changed

.release-please-manifest.json

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,3 @@
11
{
2-
"release-type": "python",
3-
"changelog-sections": [
4-
{
5-
"type": "feat",
6-
"section": "Features",
7-
"hidden": false
8-
},
9-
{
10-
"type": "fix",
11-
"section": "Bug Fixes",
12-
"hidden": false
13-
},
14-
{
15-
"type": "chore",
16-
"section": "Miscellaneous",
17-
"hidden": false
18-
}
19-
],
20-
"extra-files": [
21-
"src/momento/__init__.py"
22-
],
232
".": "1.24.0"
243
}

release-please-config.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
3+
"packages": {
4+
".": {
5+
"release-type": "python",
6+
"changelog-sections": [
7+
{
8+
"type": "feat",
9+
"section": "Features",
10+
"hidden": false
11+
},
12+
{
13+
"type": "fix",
14+
"section": "Bug Fixes",
15+
"hidden": false
16+
},
17+
{
18+
"type": "chore",
19+
"section": "Miscellaneous",
20+
"hidden": false
21+
}
22+
],
23+
"extra-files": ["src/momento/__init__.py"]
24+
}
25+
}
26+
}

0 commit comments

Comments
 (0)