mirror of
https://github.com/Kilo-Org/kilocode.git
synced 2026-09-17 17:43:04 +08:00
Remove standalone changeset-release.yml workflow (version bump PR approach). Instead, run changeset version inside publish.yml's version job to consume .changeset/*.md files into CHANGELOG.md, then extract the latest section for GitHub release notes. This replaces the previous AI-generated changelog (opencode run --command changelog) with changeset-based entries.
559 B
559 B
Changesets
This directory contains changeset files used to track changes for the next release.
Adding a changeset
When making a user-facing change, run:
bunx changeset add
Or manually create a file .changeset/<slug>.md:
---
"kilo-code": minor
---
Short description of the change for the changelog.
Use patch for bug fixes, minor for new features, major for breaking changes.
Changeset files are consumed at release time when the publish.yml workflow runs, generating changelog entries for the GitHub release notes.