Skip to content

Commit

Permalink
github: add issue and pull request templates
Browse files Browse the repository at this point in the history
  • Loading branch information
kortschak committed Feb 21, 2018
1 parent feab214 commit 675e7e5
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/ISSUE_TEMPLATE
@@ -0,0 +1,31 @@
<!--
Please make sure your issue title matchs the Go convention; a summary
of the problem, prefixed by the primary affected package.

If the issue is a question about usage or similar, please ask at the
Gonum discussion list rather than filing an issue:

https://groups.google.com/forum/#!forum/gonum-dev
-->
### 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 changes: 16 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE
@@ -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 _____."
-->

0 comments on commit 675e7e5

Please sign in to comment.