From c27907c50b86f85bf5430b4d66596ea5a49e0005 Mon Sep 17 00:00:00 2001 From: Alexander Petros Date: Thu, 16 Nov 2023 15:39:17 -0500 Subject: [PATCH] Add a PR template (#1980) * Add a PR template * Add note about features * Add new extension guidelines --- .github/PULL_REQUEST_TEMPLATE.md | 18 ++++++++++++++++++ 1 file changed, 18 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..c3ab23c0 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,18 @@ +## Description +*Please describe what changes you made, and why you feel they are necessary. Make sure to include +code examples, where applicable.* + +Corresponding issue: + +## Testing +*Please explain how you tested this change manually, and, if applicable, what new tests you added. If +you're making a change to just the website, you can omit this section.* + +## Checklist + +* [ ] I have read the contribution guidelines +* [ ] I have targeted this PR against the correct branch (`master` for website changes, `dev` for + source changes) +* [ ] This is either a bugfix, a documentation update, or a new feature that has been explicitly + approved via an issue +* [ ] I ran the test suite locally (`npm run test`) and verified that it succeeded