Skip to content

Commit cc8189b

Browse files
fclairambclaude
andauthored
fix(ci): add release-please config files (#600)
Add the required configuration files for release-please: - .release-please-manifest.json: tracks current version (0.28.0) - release-please-config.json: configures release-type as "go" and changelog sections Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
1 parent ea94abc commit cc8189b

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

.release-please-manifest.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
".": "0.28.0"
3+
}

release-please-config.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
3+
"release-type": "go",
4+
"include-component-in-tag": false,
5+
"include-v-in-tag": true,
6+
"changelog-sections": [
7+
{ "type": "feat", "section": "Features" },
8+
{ "type": "fix", "section": "Bug Fixes" },
9+
{ "type": "perf", "section": "Performance Improvements" },
10+
{ "type": "revert", "section": "Reverts" },
11+
{ "type": "docs", "section": "Documentation", "hidden": true },
12+
{ "type": "style", "section": "Styles", "hidden": true },
13+
{ "type": "chore", "section": "Miscellaneous Chores", "hidden": true },
14+
{ "type": "refactor", "section": "Code Refactoring", "hidden": true },
15+
{ "type": "test", "section": "Tests", "hidden": true },
16+
{ "type": "build", "section": "Build System", "hidden": true },
17+
{ "type": "ci", "section": "Continuous Integration", "hidden": true }
18+
],
19+
"packages": {
20+
".": {}
21+
}
22+
}

0 commit comments

Comments
 (0)