From 85b2d091c7149ec50ce376fb68afbe59acba6011 Mon Sep 17 00:00:00 2001 From: Liam Morley Date: Tue, 23 Jul 2019 20:52:27 -0400 Subject: [PATCH 1/2] Create issue templates This uses GitHub standard templates almost verbatim. This is part of an effort to create [default health files for Code for Boston's GitHub](https://help.github.com/en/articles/creating-a-default-community-health-file-for-your-organization). See https://help.github.com/en/articles/creating-issue-templates-for-your-repository for more information about issue templates. --- ISSUE_TEMPLATE/bug_report.md | 32 +++++++++++++++++++++++++++++++ ISSUE_TEMPLATE/feature_request.md | 20 +++++++++++++++++++ 2 files changed, 52 insertions(+) create mode 100644 ISSUE_TEMPLATE/bug_report.md create mode 100644 ISSUE_TEMPLATE/feature_request.md diff --git a/ISSUE_TEMPLATE/bug_report.md b/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..a650c84 --- /dev/null +++ b/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,32 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: '' +assignees: '' + +--- + +**Describe the bug** +A clear and concise description of what the bug is. + +**To Reproduce** +Steps to reproduce the behavior: +1. Go to '...' +2. Click on '....' +3. Scroll down to '....' +4. See error + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**Environment (please complete the following information):** + - OS: [e.g. iOS] + - Browser [e.g. chrome, safari] + - Version [e.g. 22] + +**Additional context** +Add any other context about the problem here. diff --git a/ISSUE_TEMPLATE/feature_request.md b/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..bbcbbe7 --- /dev/null +++ b/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,20 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '' +labels: '' +assignees: '' + +--- + +**Is your feature request related to a problem? Please describe.** +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**Describe the solution you'd like** +A clear and concise description of what you want to happen. + +**Describe alternatives you've considered** +A clear and concise description of any alternative solutions or features you've considered. + +**Additional context** +Add any other context or screenshots about the feature request here. From 499e1d478f5b6939a19f544e7ce918517c54866c Mon Sep 17 00:00:00 2001 From: Liam Morley Date: Tue, 23 Jul 2019 21:10:25 -0400 Subject: [PATCH 2/2] Add PR template, copied from Community Connect - Community Connect template originally at https://github.com/codeforboston/communityconnect/blob/development/docs/issue_template.md - See https://help.github.com/en/articles/creating-a-pull-request-template-for-your-repository for more details on pull request templates --- pull_request_template.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 pull_request_template.md diff --git a/pull_request_template.md b/pull_request_template.md new file mode 100644 index 0000000..6546289 --- /dev/null +++ b/pull_request_template.md @@ -0,0 +1,33 @@ + + +## Description + + + + +Fixes # + + + +## Motivation and Context + + +## Type of change + +- [ ] 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) +- [ ] Documentation change (updates to README and related files)