From 3cbfa6ba8205124b53a7b4c25402d68b3b4086b4 Mon Sep 17 00:00:00 2001 From: Janneke Janssen Date: Thu, 8 Sep 2016 12:03:16 +0200 Subject: [PATCH] Adds an Issue template and a Pull request template to Github --- .github/ISSUE_TEMPLATE.md | 19 +++++++++++++++++++ .github/PULL_REQUEST_TEMPLATE.md | 3 +++ 2 files changed, 22 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 000000000..9439a4d52 --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,19 @@ +Found a bug? Please fill out the sections below. 👍 + +### Issue Summary + +A summary of the issue. + +### Steps to Reproduce + +1. This is the first step +2. This is the second step, etc. + +Any other relevant information. For e.g. Why do you consider this a bug and what did you expect to happen instead? + +### Technical details + +* Python version: +* Django version: +* Wagtail version: +* Browser version: diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 000000000..8c5269d64 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,3 @@ +### Thanks for contributing to Wagtail! 🎉 + +Please review [the contributor guidelines](http://docs.wagtail.io/en/latest/contributing/index.html) and confirm that [the tests pass](http://docs.wagtail.io/en/latest/contributing/developing.html#testing) in case of Python changes.