From ba990f92ac7f068c4d5fe1930c21e72d9f8efccd Mon Sep 17 00:00:00 2001 From: Ross Light Date: Wed, 28 Nov 2018 13:06:48 -0800 Subject: [PATCH] Add GitHub PR and issue templates (#76) --- .github/ISSUE_TEMPLATE/bug_report.md | 28 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 23 +++++++++++++++++++ .github/pull_request_template.md | 5 ++++ 3 files changed, 56 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 0000000..cc892c8 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,28 @@ +--- +name: Bug report +about: Create a report to help us improve Wire + +--- + +You can use `go bug` to have a cool, automatically filled out bug template, or +fill out the template below. + +### Describe the bug + +A clear and concise description of what the bug is. + +### To Reproduce + +Steps to reproduce the behavior. + +## Expected behavior + +A clear and concise description of what you expected to happen. + +### Version + +Which version of Wire are you seeing the bug with? + +### Additional context + +Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..a5c8604 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,23 @@ +--- +name: Feature request +about: Suggest an idea for this project + +--- + +### 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. diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..7107d6a --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,5 @@ +Please reference any Issue related to this Pull Request. Example: `Fixes #1`. + +See +[here](https://blog.github.com/2015-01-21-how-to-write-the-perfect-pull-request/) +for tips on good Pull Request description.