feat(ci): add pull request template with contributor checklist#779
Merged
diberry merged 2 commits intobradygaster:devfrom Apr 4, 2026
Merged
feat(ci): add pull request template with contributor checklist#779diberry merged 2 commits intobradygaster:devfrom
diberry merged 2 commits intobradygaster:devfrom
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a structured PR readiness checklist to the repository’s pull request template so contributors see key “review-ready” expectations at PR creation time.
Changes:
- Inserts a “PR Readiness Checklist” section covering branch hygiene, build/test steps, changesets, docs, and exports.
- Adds guidance pointing to CONTRIBUTING.md and noting the readiness bot will validate items after push.
- Reorganizes the template by placing the checklist before the “Breaking Changes” section.
dde3a06 to
a291352
Compare
Contributor
🛫 PR Readiness Check
|
| Status | Check | Details |
|---|---|---|
| ❌ | Single commit | 2 commits — consider squashing before review |
| ✅ | Not in draft | Ready for review |
| ✅ | Branch up to date | Up to date with dev |
| ❌ | Copilot review | No Copilot review yet — it may still be processing |
| ✅ | Changeset present | No source files changed — changeset not required |
| ✅ | Scope clean | No .squad/ or docs/proposals/ files |
| ✅ | No merge conflicts | No merge conflicts |
| ✅ | Copilot threads resolved | All 4 Copilot thread(s) resolved |
| ❌ | CI passing | 14 check(s) still running |
This check runs automatically on every push. Fix any ❌ items and push again.
See CONTRIBUTING.md and PR Requirements for details.
a291352 to
01826b7
Compare
diberry
added a commit
to diberry/squad
that referenced
this pull request
Apr 3, 2026
…gaster#779) Add .github/PULL_REQUEST_TEMPLATE.md with sections for description, change type, checklist, testing, and related issues. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
01826b7 to
f8ea11d
Compare
tamirdresher
approved these changes
Apr 4, 2026
Collaborator
tamirdresher
left a comment
There was a problem hiding this comment.
LGTM. Clean contributor checklist, aligns with existing conventions. Consider adding CLI command refs (e.g. npx changeset add) for first-time contributors in a follow-up.
…gaster#779) Add .github/PULL_REQUEST_TEMPLATE.md with sections for description, change type, checklist, testing, and related issues. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
f8ea11d to
5ce13ea
Compare
Collaborator
Author
|
Files in this PR:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Enhances the PR template with a structured readiness checklist that contributors see at PR creation time.
Why
Suggested by @tamirdresher in PR #752 review. Having static checkboxes upfront complements any future dynamic PR readiness bot — template gives the checklist before push, bot validates after push.
How
Updated .github/PULL_REQUEST_TEMPLATE.md\ to include:
Closes #778
Working as EECOM (Core Dev)