fe7d45dd12
Remove sync-versions job that fails on protected branches. Instead, use Release Please's extra-files feature to update package.json versions as part of the release PR.
42 lines
1.4 KiB
JSON
42 lines
1.4 KiB
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
|
|
"release-type": "simple",
|
|
"bump-minor-pre-major": true,
|
|
"bump-patch-for-minor-pre-major": true,
|
|
"include-component-in-tag": false,
|
|
"include-v-in-tag": true,
|
|
"prerelease": true,
|
|
"prerelease-type": "beta",
|
|
"changelog-sections": [
|
|
{ "type": "feat", "section": "Features", "hidden": false },
|
|
{ "type": "fix", "section": "Bug Fixes", "hidden": false },
|
|
{ "type": "perf", "section": "Performance Improvements", "hidden": false },
|
|
{ "type": "revert", "section": "Reverts", "hidden": false },
|
|
{ "type": "docs", "section": "Documentation", "hidden": false },
|
|
{ "type": "style", "section": "Styles", "hidden": true },
|
|
{ "type": "chore", "section": "Miscellaneous", "hidden": true },
|
|
{ "type": "refactor", "section": "Code Refactoring", "hidden": true },
|
|
{ "type": "test", "section": "Tests", "hidden": true },
|
|
{ "type": "build", "section": "Build System", "hidden": true },
|
|
{ "type": "ci", "section": "CI/CD", "hidden": true }
|
|
],
|
|
"packages": {
|
|
".": {
|
|
"release-type": "simple",
|
|
"changelog-path": "CHANGELOG.md",
|
|
"extra-files": [
|
|
{
|
|
"type": "json",
|
|
"path": "backend/package.json",
|
|
"jsonpath": "$.version"
|
|
},
|
|
{
|
|
"type": "json",
|
|
"path": "frontend/package.json",
|
|
"jsonpath": "$.version"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|