From b55b5c69c14b4e5185ac2cc390099d80c142212f Mon Sep 17 00:00:00 2001 From: Aidan Daly Date: Sat, 31 Jan 2026 14:56:11 -0500 Subject: [PATCH 1/2] chore: add PR template --- .github/pull_request_template.md | 37 ++++++++++++++++++++++++++++++++ 1 file changed, 37 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 000000000..d203fa955 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,37 @@ +## Description + + +## Related Issues + + +## Documentation PR + + +## Type of Change + + +Bug fix +New feature +Breaking change +Documentation update +Other (please describe): + +## Testing + +How have you tested the change? + +- [ ] I ran `npm test` +- [ ] I ran `npm run typecheck` +- [ ] I ran `npm run lint` + +## Checklist +- [ ] I have read the CONTRIBUTING document +- [ ] I have added any necessary tests that prove my fix is effective or my feature works +- [ ] I have updated the documentation accordingly +- [ ] I have added an appropriate example to the documentation to outline the feature, or no new docs are needed +- [ ] My changes generate no new warnings +- [ ] Any dependent changes have been merged and published + +---- + +By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice. From aff0cfc1c599a55d4118e1c5c29a4e586d1be357 Mon Sep 17 00:00:00 2001 From: Aidan Daly Date: Sat, 31 Jan 2026 15:37:28 -0500 Subject: [PATCH 2/2] chore: convert Type of Change to checkboxes in PR template --- .github/pull_request_template.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index d203fa955..63811ef25 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -8,13 +8,13 @@ ## Type of Change - + -Bug fix -New feature -Breaking change -Documentation update -Other (please describe): +- [ ] Bug fix +- [ ] New feature +- [ ] Breaking change +- [ ] Documentation update +- [ ] Other (please describe): ## Testing