From f8b889f1c940dec227d02b8a9d5a47a22d51bc70 Mon Sep 17 00:00:00 2001 From: karl-richter Date: Thu, 1 Dec 2022 21:45:30 -0800 Subject: [PATCH] Add pull request template for Github (#915) * added pr template * updated pr template * Update PULL_REQUEST_TEMPLATE.md Co-authored-by: Kevin Chen --- .github/PULL_REQUEST_TEMPLATE.md | 14 ++++++++++++++ 1 file changed, 14 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..11183fcf3 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,14 @@ +## :microscope: Background + +- Why is this change needed? Is there a related issue or a new feature to be added? + +## :crystal_ball: Key changes + +- Explain the main changes introduced by this pull request for the reviewer. + +## :clipboard: Review Checklist +- [ ] I have performed a self-review of my own code. +- [ ] I have commented my code, added docstrings and data types to function definitions. +- [ ] I have added pytests to check whether my feature / fix works. + +Please make sure to follow our best practices in the [Contributing guidelines](https://github.com/ourownstory/neural_prophet/blob/main/CONTRIBUTING.md).