Files
claude-engineering-plugin/.github/release-please-config.json
Trevin Chow f1713b9dcd fix: reduce release-please search depth from 500 to 50
release-please defaults to walking 500 commits and 400 releases on
every run, making each API call per-commit. With ~20 commits between
releases, this wastes ~2 minutes on unnecessary GitHub API calls.
2026-03-18 01:58:55 -07:00

67 lines
1.6 KiB
JSON

{
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
"include-component-in-tag": true,
"release-search-depth": 20,
"commit-search-depth": 50,
"packages": {
".": {
"release-type": "simple",
"package-name": "cli",
"skip-changelog": true,
"extra-files": [
{
"type": "json",
"path": "package.json",
"jsonpath": "$.version"
}
]
},
"plugins/compound-engineering": {
"release-type": "simple",
"package-name": "compound-engineering",
"skip-changelog": true,
"extra-files": [
{
"type": "json",
"path": ".claude-plugin/plugin.json",
"jsonpath": "$.version"
},
{
"type": "json",
"path": ".cursor-plugin/plugin.json",
"jsonpath": "$.version"
}
]
},
"plugins/coding-tutor": {
"release-type": "simple",
"package-name": "coding-tutor",
"skip-changelog": true,
"extra-files": [
{
"type": "json",
"path": ".claude-plugin/plugin.json",
"jsonpath": "$.version"
},
{
"type": "json",
"path": ".cursor-plugin/plugin.json",
"jsonpath": "$.version"
}
]
},
".claude-plugin": {
"release-type": "simple",
"package-name": "marketplace",
"skip-changelog": true,
"extra-files": [
{
"type": "json",
"path": "marketplace.json",
"jsonpath": "$.metadata.version"
}
]
}
}
}