From 4bd9ba60e5c8c19a63bdfb6a1bd3525079a50b1f Mon Sep 17 00:00:00 2001 From: Conrad Sopala Date: Wed, 2 Jan 2019 19:52:26 +0100 Subject: [PATCH] Create PULL_REQUEST_TEMPLATE.md --- PULL_REQUEST_TEMPLATE.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 PULL_REQUEST_TEMPLATE.md diff --git a/PULL_REQUEST_TEMPLATE.md b/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..fa3bf58 --- /dev/null +++ b/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,32 @@ +# Pull Request Report + +Please include a summary of the change you made with relevant motivation and context why such change has been made. Filling sections below will allow us to get your changes reviewed and merged easier. If you feel like certain section is not applicable, feel free to delete it. Thanks for co-operation! 🙏🏼 + +### Description + +Tell us what you changed, why you did it and what additional value it will bring. + +### Type of change + +- [ ] Bug fix (fix to an issue) +- [ ] New feature (changes to functionality) +- [ ] Big change (fix or feature that would cause existing functionality to work as expected) + +### Testing + +Please describe the tests that you ran to verify your changes. Provide any instructions that will allow us to reproduce it. Please also list any relevant details for your test configuration. + +**Test Configuration** + +* Framework version: +* Language version: +* Browser version: + +### Additional info + +- [ ] 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 and errors +- [ ] 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