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 May 4, 2018
1 parent 35a19a8 commit ca618cf
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/ISSUE_TEMPLATE
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<!--
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?
<!-- Please include an expected output image if available. -->


### What actually happened?
<!-- Please include an annotated output image if available. -->


### What version of Go, Gonum, Gonum/netlib and libhdf5 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)`
and `(cd $(go env GOPATH)/src/gonum.org/v1/hdf5 && git rev-parse HEAD)`.
-->


### Does this issue reproduce with the current master?

16 changes: 16 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE
Original file line number Diff line number Diff line change
@@ -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 ca618cf

Please sign in to comment.