From 826a8b59180300ab10e8bc800bccb53d099cd812 Mon Sep 17 00:00:00 2001 From: sherwinski Date: Thu, 14 May 2026 11:22:49 -0700 Subject: [PATCH] docs: add pull request template Adds a .github/pull_request_template.md so new PRs come pre-populated with the sections we already use in practice (summary, motivation with Linear link, scope, testing, affected code checklist). --- .github/pull_request_template.md | 64 ++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 .github/pull_request_template.md diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..4f186cf --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,64 @@ + + +## One Line Summary + + + +## Motivation + + + +## Scope + + + +- **Affected**: +- **Not affected**: + +## Testing + +### Manual + + + +1. +2. + +### Unit / Integration + + + +- [ ] `composer test` passes locally + +## Affected code checklist + +- [ ] PHP plugin code (`v3/`) +- [ ] `v2/` legacy code +- [ ] JS / CSS assets +- [ ] Build / CI +- [ ] Tests +- [ ] Documentation (README, `readme.txt`, etc.) + +## Checklist + +- [ ] Code follows existing style in the touched files +- [ ] Tested manually in the relevant editor(s) + - [ ] Gutenberg/Block editor + - [ ] Classic editor +- [ ] No new lint or test errors introduced +- [ ] Linear ticket / GitHub issue linked above +- [ ] `readme.txt` and plugin version bumped if user-facing (release PRs only)