From b7035be2c595255bfd415372dd407d9ac63ef853 Mon Sep 17 00:00:00 2001 From: Barry Baker Date: Thu, 4 Jan 2024 09:35:00 -0500 Subject: [PATCH] Create pull_request_template.md This addresses issue #99 --- .../pull_request_template.md | 53 +++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE/pull_request_template.md diff --git a/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md b/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md new file mode 100644 index 00000000..dbebfe8f --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md @@ -0,0 +1,53 @@ + + + +# Description + + + +# Type of change + +- Bug fix (fixes something broken) +- New feature (adds functionality) +- Maintenance (code refactor, clean-up, new CI test, etc.) + +# Change characteristics +- Is this a breaking change (a change in existing functionality)? YES/NO +- Does this change require a documentation update? YES/NO + +# How has this been tested? + + +# Checklist +- [ ] Any dependent changes have been merged and published +- [ ] 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 +- [ ] My changes generate no new warnings +- [ ] New and existing tests pass with my changes +- [ ] I have made corresponding changes to the documentation if necessary