mirror of
https://github.com/headroomlabs-ai/headroom.git
synced 2026-08-27 14:17:10 -04:00
Release PRs were titled 'chore: release main' (no version), so release-please couldn't extract the version to tag on merge — leaving each merged release PR 'autorelease: pending' and aborting all subsequent releases (jammed #498, #594; both required manual tag+publish recovery). Pin the title to 'chore: release ${version}' so the bot tags automatically on merge.
44 lines
1.5 KiB
JSON
44 lines
1.5 KiB
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
|
|
"release-type": "python",
|
|
"include-v-in-tag": true,
|
|
"include-component-in-tag": false,
|
|
"bump-minor-pre-major": true,
|
|
"bump-patch-for-minor-pre-major": false,
|
|
"draft": false,
|
|
"prerelease": false,
|
|
"separate-pull-requests": false,
|
|
"pull-request-title-pattern": "chore: release ${version}",
|
|
"packages": {
|
|
".": {
|
|
"package-name": "headroom-ai",
|
|
"release-type": "python",
|
|
"extra-files": [
|
|
{
|
|
"type": "json",
|
|
"path": "sdk/typescript/package.json",
|
|
"jsonpath": "$.version"
|
|
},
|
|
{
|
|
"type": "json",
|
|
"path": "plugins/openclaw/package.json",
|
|
"jsonpath": "$.version"
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"changelog-sections": [
|
|
{ "type": "feat", "section": "Features" },
|
|
{ "type": "fix", "section": "Bug Fixes" },
|
|
{ "type": "perf", "section": "Performance Improvements" },
|
|
{ "type": "deps", "section": "Dependencies" },
|
|
{ "type": "revert", "section": "Reverts" },
|
|
{ "type": "refactor", "section": "Code Refactoring" },
|
|
{ "type": "ci", "section": "Continuous Integration", "hidden": true },
|
|
{ "type": "build", "section": "Build System", "hidden": true },
|
|
{ "type": "chore", "section": "Miscellaneous Chores", "hidden": true },
|
|
{ "type": "docs", "section": "Documentation", "hidden": true },
|
|
{ "type": "style", "section": "Styles", "hidden": true },
|
|
{ "type": "test", "section": "Tests", "hidden": true }
|
|
]
|
|
}
|