Skip to content
This repository was archived by the owner on May 21, 2026. It is now read-only.

Commit 04372cc

Browse files
committed
moved versioning changest stuff
1 parent 07564bf commit 04372cc

4 files changed

Lines changed: 45 additions & 0 deletions

File tree

File renamed without changes.
File renamed without changes.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,56 @@ Fixes # (issue)
1212
- [ ] New feature (non-breaking change which adds functionality)
1313
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
1414
- [ ] Documentation update
15+
- [ ] Internal change (refactoring, tests, tooling)
16+
17+
## 📦 Changeset Required?
18+
19+
<!-- 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.
1540

1641
## Checklist
1742

43+
### Code Quality
44+
1845
- [ ] My code follows the style guidelines of this project
1946
- [ ] I have performed a self-review of my own code
2047
- [ ] 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+
2154
- [ ] The title of my pull request follows the [conventional commits](https://www.conventionalcommits.org/) standard
2255
- [ ] 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 -->
File renamed without changes.

0 commit comments

Comments
 (0)