From 1cc5389c9b6e134762ca040a121904363c5f1061 Mon Sep 17 00:00:00 2001 From: John Kuhn Date: Mon, 15 Apr 2024 06:16:51 -0700 Subject: [PATCH] Define a pr template to encourage thorough pr descriptions (#73) * Define a pr template to encourage thorough pr descriptions * Move the PR template to be under .github dir --- .github/pull_request_template.md | 20 ++++++++++++++++++++ 1 file changed, 20 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 0000000..d09be6f --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,20 @@ +## What type of PR is this? (check all applicable) + +- [ ] Refactor +- [ ] Feature +- [ ] Bug Fix +- [ ] Optimization +- [ ] Documentation Update + +## Description +_A brief description of the work covered in this change._ + +## Notes to Reviewer +_If there is a particular part of the code that you need the reviewer to examine closely (e.g. some logic you are not sure about), please specify here._ + +## How to test +_Please replace this line with instructions on how to test your changes. Use screenshots or recordings if necessary._ + +## Link to issues addressed +- [ISSUE-XYZ](https://github.com/CodelyTV/pr-size-labeler/issues/XYZ) +- [ISSUE-XYZ](https://github.com/CodelyTV/pr-size-labeler/issues/XYZ)