github: add issue and pull request templates

This commit is contained in:
Dan Kortschak
2018-01-31 21:02:14 +10:30
committed by GitHub
parent 39ce232e1a
commit 0d92589206
2 changed files with 42 additions and 0 deletions

26
.github/ISSUE_TEMPLATE vendored Normal file
View File

@@ -0,0 +1,26 @@
<!--
Please make sure your issue title matchs the Go convention; a summary
of the problem, prefixed by the primary affected package.
-->
### What are you trying to do?
### What did you do?
<!-- Please include a link to a minimal reproducer here. -->
### What did you expect to happen?
### What actually happened?
### What version of Go and Gonum are you using?
<!--
Paste the output of `go version` and if you are installing Gonum from source, paste
the output of `(cd $(go env GOPATH)/src/gonum.org/v1/gonum && git rev-parse HEAD)`.
-->
### Does this issue reproduce with the current master?

16
.github/PULL_REQUEST_TEMPLATE vendored Normal file
View File

@@ -0,0 +1,16 @@
Please take a look.
<!--
Checklist:
- API changes have been discussed
- code is goformated correctly (goimports)
- packages with generated code have had code generation run
- tests pass locally
- linked to relevant issues
Please make sure your commit message summary line and pull request
title match the Go convention; a one-line summary of the change,
prefixed by the primary affected package that should complete the
sentence, "This change modifies Gonum to _____."
-->