From 81297eed3288d837aa25b2e7e83468d1fd944849 Mon Sep 17 00:00:00 2001 From: Theo Despoudis Date: Tue, 4 Dec 2018 13:24:52 +0000 Subject: Add github templates. ISSUE_TEMPLATE for creating issues PULL_REQUEST_TEMPLATE for creating PRs Signed-off-by: Theo Despoudis --- .github/ISSUE_TEMPLATE.md | 8 ++++++++ .github/PULL_REQUEST_TEMPLATE.md | 15 +++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE.md create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 0000000..7323c14 --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,8 @@ +Thanks for wanting to report an issue you've found in redis-py. Please delete this text and fill in the template below. +It is of course not always possible to reduce your code to a small test case, but it's highly appreciated to have as much data as possible. Thank you! + +**Version**: What redis-py and what redis version is the issue happening on? + +**Platform**: What platform / version? (For example Python 3.5.1 on Windows 7 / Ubuntu 15.10 / Azure) + +**Description**: Description of your issue, stack traces from errors and code that reproduces the issue diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..798be44 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,15 @@ +### Pull Request check-list + +_Please make sure to review and check all of these items:_ + +- [ ] Does `$ python setup test` pass with this change (including linting)? +- [ ] Does travis tests pass with this change (enable it first in your forked repo and wait for the travis build to finish)? +- [ ] Is the new or changed code fully tested? +- [ ] Is a documentation update included (if this change modifies existing APIs, or introduces new ones)? + +_NOTE: these things are not required to open a PR and can be done +afterwards / while the PR is open._ + +### Description of change + +_Please provide a description of the change here._ -- cgit v1.2.1