feat: migrate repo releases to manual release-please (#293)

This commit is contained in:
Trevin Chow
2026-03-17 17:58:13 -07:00
committed by GitHub
parent 74fb71731a
commit f47f829d81
44 changed files with 1967 additions and 801 deletions

View File

@@ -650,13 +650,12 @@ Use this checklist when adding a new target provider:
### Documentation
- [ ] Create `docs/specs/{target}.md` with format specification
- [ ] Update `README.md` with target in list and usage examples
- [ ] Update `CHANGELOG.md` with new target
- [ ] Do not hand-add a release entry; release automation owns canonical changelog updates
### Version Bumping
- [ ] Use a `feat(...)` conventional commit so semantic-release cuts the next minor root CLI release on `main`
- [ ] Do not hand-start a separate root CLI version line in `package.json`; the root package follows the repo `v*` tags and semantic-release writes that version back after release
- [ ] Update plugin.json description if component counts changed
- [ ] Verify CHANGELOG entry is clear
- [ ] Use a conventional `feat:` or `fix:` title so release automation can infer the right bump
- [ ] Do not hand-start or hand-bump release-owned version lines in `package.json` or plugin manifests
- [ ] Run `bun run release:validate` if component counts or descriptions changed
---