From d88ed04a2f0950b2c16653a28db5485a838af8dc Mon Sep 17 00:00:00 2001 From: Akarsh Kushwaha Date: Wed, 18 Feb 2026 18:03:17 +0530 Subject: [PATCH 1/3] feat: add Pull Request template --- .github/PULL_REQUEST_TEMPLATE.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 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 00000000..55be9e19 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,30 @@ + +# Description + +Please include a summary of the change and which issue is fixed. + +Fixes # (issue) + +## Type of change + +- [ ] Bug fix (non-breaking change which fixes an issue) +- [ ] New feature (non-breaking change which adds functionality) +- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) +- [ ] This change requires a documentation update + +# How Has This Been Tested? + +Please describe the tests that you ran to verify your changes. + +- [ ] Test A +- [ ] Test B + +# Checklist: + +- [ ] My code follows the style guidelines of this project +- [ ] I have performed a self-review of my own code +- [ ] I have commented my code, particularly in hard-to-understand areas +- [ ] I have made corresponding changes to the documentation +- [ ] My changes generate no new warnings +- [ ] I have added tests that prove my fix is effective or that my feature works +- [ ] New and existing unit tests pass locally with my changes From e395b3f5b3e8dd6ef968985c9219e924e5d4977b Mon Sep 17 00:00:00 2001 From: Akarsh Kushwaha Date: Wed, 18 Feb 2026 18:43:09 +0530 Subject: [PATCH 2/3] docs: refine PR template based on review feedback --- .github/PULL_REQUEST_TEMPLATE.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 55be9e19..d03e8fd7 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,11 +1,10 @@ - # Description -Please include a summary of the change and which issue is fixed. +Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. -Fixes # (issue) +Fixes # (issue) (e.g., Fixes #123, or Fixes #123, #456) -## Type of change +# Type of change - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) @@ -21,6 +20,8 @@ Please describe the tests that you ran to verify your changes. # Checklist: +_Please check all that apply. You can mark items as N/A if they don't apply to your change._ + - [ ] My code follows the style guidelines of this project - [ ] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas From 6c1c90aa6c25c00df27271b8246f158cba97519f Mon Sep 17 00:00:00 2001 From: Akarsh Kushwaha Date: Wed, 18 Feb 2026 18:51:42 +0530 Subject: [PATCH 3/3] docs: finalize PR template with correct issue linking format --- .github/PULL_REQUEST_TEMPLATE.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index d03e8fd7..5b33e2c7 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -2,7 +2,8 @@ Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. -Fixes # (issue) (e.g., Fixes #123, or Fixes #123, #456) +Fixes # + # Type of change @@ -18,7 +19,7 @@ Please describe the tests that you ran to verify your changes. - [ ] Test A - [ ] Test B -# Checklist: +# Checklist _Please check all that apply. You can mark items as N/A if they don't apply to your change._