File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -210,15 +210,24 @@ pnpm --filter @datum-cloud/datum-ui typecheck
210210pnpm --filter @datum-cloud/datum-ui lint
211211pnpm --filter @datum-cloud/datum-ui test
212212
213- # 3. Add a changeset
214- pnpm changeset
215-
216- # 4. Commit and push
213+ # 3. Commit and push
217214git add .
218215git commit -m " feat: description of changes"
219216git push -u origin feat/my-feature
220217```
221218
219+ ### Release Labels
220+
221+ When your PR is merged to ` main ` , the publish workflow automatically bumps the package version based on PR labels:
222+
223+ | Label | Version Bump | Example |
224+ | ---| ---| ---|
225+ | ` release:major ` | Major | ` 0.3.0 ` → ` 1.0.0 ` |
226+ | ` release:minor ` | Minor | ` 0.2.1 ` → ` 0.3.0 ` |
227+ | _ (no label)_ | Patch (default) | ` 0.2.1 ` → ` 0.2.2 ` |
228+
229+ Add the appropriate label to your PR before merging to control the version bump.
230+
222231## License
223232
224233MIT
You can’t perform that action at this time.
0 commit comments