Skip to content

Commit a064fbc

Browse files
AnnatarHeclaude
andcommitted
ci(release): include all commit types in changelog
Add release-please config to include refactor, perf, docs, chore, build, test, style, and revert commits in the generated changelog. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 79ffaa9 commit a064fbc

3 files changed

Lines changed: 26 additions & 1 deletion

File tree

.github/workflows/release.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ jobs:
1818
id: release
1919
with:
2020
token: ${{ secrets.GITHUB_TOKEN }}
21-
release-type: go
21+
config-file: release-please-config.json
22+
manifest-file: .release-please-manifest.json
2223
- uses: actions/checkout@v5
2324
with:
2425
fetch-depth: 0

.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.1.41"
3+
}

release-please-config.json

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

0 commit comments

Comments
 (0)