From adc976d91b918b5ff5c7bd9e1928247c6d98f32a Mon Sep 17 00:00:00 2001 From: Andreev Kirill Andreevich Date: Fri, 17 Jul 2026 02:47:46 +0300 Subject: [PATCH] docs: add pull request template Adds .github/PULL_REQUEST_TEMPLATE.md with the sections requested in #80: description, related issue, type of change, testing notes and a short checklist (tests, lint, docs). Kept deliberately brief to lower friction for new contributors rather than add a hoop to jump through. Closes #80 Co-Authored-By: Claude Fable 5 --- .github/PULL_REQUEST_TEMPLATE.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 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..e2be39a --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,24 @@ +# Description + + + +## Related issue + + + +## Type of change + +- [ ] Bug fix +- [ ] Feature +- [ ] Docs +- [ ] Test + +## How it was tested + + + +## Checklist + +- [ ] `npm test` passes +- [ ] Lint passes +- [ ] Docs updated (if needed)