You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!-- Most changes need a changeset! See the guide below for details. -->
20
+
21
+
**Does this PR need a changeset?**
22
+
-[ ] ✅ Yes - I have created a changeset (`pnpm changeset`)
23
+
-[ ] ❌ No - This is an internal-only change (docs, tests, tooling)
24
+
25
+
**Quick reminder:**
26
+
```bash
27
+
pnpm changeset # Creates a changeset interactively
28
+
```
29
+
30
+
**📚 Full guide:**[Changeset Workflow Guide](.github/CHANGESET_WORKFLOW.md)
31
+
**Need help?** See [when to create changesets](.github/CHANGESET_WORKFLOW.md#-changeset-types) and [examples](.github/CHANGESET_WORKFLOW.md#-changeset-types)
32
+
33
+
## 🚀 Release Target
34
+
35
+
-[ ]`main` branch → Stable release (default)
36
+
-[ ]`beta` branch → Beta/prerelease version
37
+
-[ ] Other feature branch → No release
38
+
39
+
**Releasing a beta?** See the [Beta Release Workflow Guide](.github/BETA_RELEASES.md) for instructions.
15
40
16
41
## Checklist
17
42
43
+
### Code Quality
44
+
18
45
-[ ] My code follows the style guidelines of this project
19
46
-[ ] I have performed a self-review of my own code
20
47
-[ ] I have added tests that prove my fix is effective or that my feature works
48
+
-[ ] Existing tests pass locally (`pnpm test`)
49
+
-[ ] Linting passes (`pnpm lint`)
50
+
-[ ] Build succeeds (`pnpm build`)
51
+
52
+
### Documentation
53
+
21
54
-[ ] The title of my pull request follows the [conventional commits](https://www.conventionalcommits.org/) standard
22
55
-[ ] Changes have been documented in the README/documentation (if applicable)
56
+
-[ ] Breaking changes are clearly documented with migration steps
57
+
58
+
### Release Preparation
59
+
60
+
-[ ]**I have created a changeset** (`pnpm changeset`) - if this affects published packages
61
+
-[ ] The changeset has a clear, user-focused description
62
+
-[ ] Version bump type is appropriate (patch/minor/major)
63
+
-[ ] All affected packages are included in the changeset
64
+
65
+
### Additional Notes
66
+
67
+
<!-- Optional: Add any additional context, screenshots, or notes for reviewers -->
0 commit comments