From 047aa94b69f8d289cd0d6c03a5a267a0521b374e Mon Sep 17 00:00:00 2001 From: Tom Kirkpatrick Date: Thu, 23 Aug 2018 16:25:53 +0200 Subject: [PATCH] feat(github): add github issue templates Add issue templates for github bug reports, feature requests and pull requests to help gather as much information as possible from users submitting issues or PR's. Templates generated with the help of: https://www.talater.com/open-source-templates/#/page/1 --- .github/ISSUE_TEMPLATE/bug_report.md | 44 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 27 ++++++++++++++ .github/PULL_REQUEST_TEMPLATE.md | 37 +++++++++++++++++++ 3 files changed, 108 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 00000000..b6662ae4 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,44 @@ +--- +name: Bug report +about: Create a report to help us improve + +--- + + + +## Description + + + +## Expected Behavior + + + +## Actual Behavior + + + +## Possible Fix + + + +## Steps to Reproduce + + + + +- 1. +- 2. +- 3. +- 4. + +## Context + + + +## Your Environment + + + +- Zap Desktop version: +- Operating System and version: diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 00000000..850d40a0 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,27 @@ +--- +name: Feature request +about: Suggest an idea for this project + +--- + + + +## Detailed Description + + + +## Context + + + + +## Possible Implementation + + + +## Your Environment + + + +- Zap Desktop version: +- Operating System and version: diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 00000000..2471759a --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,37 @@ + + +## Description: + + + +## Motivation and Context: + + + + +## How Has This Been Tested? + + + + + +## Screenshots (if appropriate): + +## Types of changes: + + + + + + +## Checklist: + + + + +- [ ] My code follows the code style of this project. +- [ ] I have reviewed and updated the documentation accordingly. +- [ ] I have read the _CONTRIBUTING_ document. +- [ ] I have added tests to cover my changes where needed. +- [ ] All new and existing tests passed. +- [ ] My commits have been squashed into a concise set of changes.