Files
shipshitdev__skills/release-please-config.json
Vincent ddeb8fe662 chore: open the release PR as a draft (#115)
The rolling release PR sits open accumulating every merge to master, so a
ready-for-review PR misrepresents its state and invites an accidental merge.
draft-pull-request makes readiness an explicit act: mark it ready when you
actually intend to cut the version.
2026-08-18 07:53:01 +02:00

19 lines
556 B
JSON

{
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
"release-type": "node",
"include-component-in-tag": false,
"include-v-in-tag": true,
"bump-minor-pre-major": false,
"draft-pull-request": true,
"changelog-sections": [
{ "type": "feat", "section": "Features" },
{ "type": "fix", "section": "Bug Fixes" },
{ "type": "refactor", "section": "Refactors" },
{ "type": "chore", "section": "Chores" },
{ "type": "docs", "section": "Docs" }
],
"packages": {
".": {}
}
}