From ab5f25950b1e284c3e0519761f6c44d1291ed1f3 Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Mon, 27 Apr 2026 04:01:17 +0900 Subject: [PATCH] docs: add .github/PULL_REQUEST_TEMPLATE.md (closes PARITY doc gap) --- .github/PULL_REQUEST_TEMPLATE.md | 27 +++++++++++++++++++++++++++ PARITY.md | 2 +- 2 files changed, 28 insertions(+), 1 deletion(-) 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..26b2ba8 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,27 @@ +## Summary + + + +## Related Pinpoints / Issues + + + +## Changes + + +- + +## Testing + + +- [ ] `cargo test` passes +- [ ] `cargo fmt --check` passes +- [ ] Manual verification (describe) + +## Checklist + +- [ ] Code follows project conventions +- [ ] ROADMAP.md updated (if filing/closing pinpoints) +- [ ] CHANGELOG.md updated (if user-facing change) +- [ ] Documentation updated (if applicable) +- [ ] No regressions in existing tests diff --git a/PARITY.md b/PARITY.md index 9d0ea35..28b8dc7 100644 --- a/PARITY.md +++ b/PARITY.md @@ -211,7 +211,7 @@ Repo documentation suite shipped during extended dogfood audit. Status: present/ | Document | Status | Priority | Notes | |----------|--------|----------|-------| | CODE_OF_CONDUCT.md | ❌ Missing | Low | Standard for public repos | -| .github/PULL_REQUEST_TEMPLATE.md | ❌ Missing | Medium | Would standardize PR descriptions | +| .github/PULL_REQUEST_TEMPLATE.md | ✅ Present | Medium | Standardizes PR descriptions | | docs/CONFIGURATION.md | ✅ Present | High | env vars, settings.json, provider config — relates to #283, #285 | | docs/API_REFERENCE.md | ❌ Missing | Medium | JSON envelope schema, output format contract | | .github/ISSUE_TEMPLATE/bug_report.md | ❌ Missing | Low | Standard bug template (pinpoint.md covers discovery) |