From 290b1a5a527fbe1b6766f01079ab2c72df8c4fbe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dennis=20G=C3=BCnnewig?= Date: Thu, 19 May 2016 20:01:35 +0200 Subject: [PATCH] Add templates for issues and pull requests (#979) * Add template for isses This adds a template for issues: https://github.com/blog/2111-issue-and-pull-request-templates. It's based on the template from this site https://github.com/TalAter/open-source-templates. * Add template for pull requests This adds a template for pull requests: https://github.com/blog/2111-issue-and-pull-request-templates. It's based on the template from this site https://github.com/TalAter/open-source-templates. * Tweaks to copy in issue template * Tweaks to copy in pull request template --- .github/ISSUE_TEMPLATE.md | 48 ++++++++++++++++++++++++++++++++ .github/PULL_REQUEST_TEMPLATE.md | 39 ++++++++++++++++++++++++++ 2 files changed, 87 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 0000000000..24ea3abbcc --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,48 @@ + + +## Summary + + + +## Expected Behavior + + + + + +## Current Behavior + + + + + +~~~ +~~~ + +## Possible Solution + + + + +## Steps to Reproduce (for bugs) + + + +1. +2. +3. +4. + +## Context & Motivation + + + + +## Your Environment + + +* Version used: +* Operating System and version: +* Link to your project: diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000000..ada6533423 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,39 @@ + + +## Summary + + + +## Details + + + +## Motivation and Context + + + + +## How Has This Been Tested? + + + + + + + +## Screenshots (if appropriate): + +## Types of changes + + +- [ ] Bug fix (non-breaking change which fixes an issue) +- [ ] New feature (non-breaking change which adds functionality) +- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) + +## Checklist: + + + +- [ ] I've added tests for my code +- [ ] My change requires a change to the documentation. +- [ ] I have updated the documentation accordingly.