summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy McCurdy <andy@andymccurdy.com>2018-12-04 08:51:51 -0800
committerGitHub <noreply@github.com>2018-12-04 08:51:51 -0800
commitac6b286242b3054b5645e67e58ce8340ccf2d091 (patch)
tree24a81c8a1f7568959e7c1707672b8a849f41b4d4
parentd7bd3e6e6aa9ba42e796f053208dde5b3ea81b3b (diff)
parent81297eed3288d837aa25b2e7e83468d1fd944849 (diff)
downloadredis-py-ac6b286242b3054b5645e67e58ce8340ccf2d091.tar.gz
Merge pull request #1097 from theodesp/github-templates
Add github templates.
-rw-r--r--.github/ISSUE_TEMPLATE.md8
-rw-r--r--.github/PULL_REQUEST_TEMPLATE.md15
2 files changed, 23 insertions, 0 deletions
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._