diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md new file mode 100644 index 0000000..202d804 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.md @@ -0,0 +1,58 @@ +--- +name: Bug report +about: Create a report about a bug in lightwalletd. +title: '' +labels: 'bug' +assignees: '' + +--- + + + +### Describe the issue +Please provide a general summary of the issue you're experiencing + +### Can you reliably reproduce the issue? +#### If so, please list the steps to reproduce below: +1. +2. +3. + +### Expected behaviour +Tell us what should happen + +### Actual behaviour + errors +Tell us what happens instead including any noticable error output (any messages +displayed on-screen when e.g. a crash occurred) + +### The version of Zcash you were using: +Run `lightwalletd --version` to find out + +### Machine specs: +- OS name + version: +- CPU: +- RAM: +- Disk size: +- Disk Type (HD/SDD): +- Linux kernel version (uname -a): +- Compiler version (run `go version`): + +### Any extra information that might be useful in the debugging process. +This includes the relevant contents of `server.log`. You can paste raw +text, attach the file directly in the issue or link to the text via a pastebin +type site. Please also include any non-standard things you did during +compilation (extra flags, dependency version changes etc.) if applicable. diff --git a/.github/ISSUE_TEMPLATE/feature-request.md b/.github/ISSUE_TEMPLATE/feature-request.md new file mode 100644 index 0000000..a6ef34d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.md @@ -0,0 +1,22 @@ +--- +name: Feature request +about: Suggest an idea for lightwalletd. +title: '' +labels: 'use case' +assignees: '' + +--- + +## Is your feature request related to a problem? Please describe. +A clear and concise description of what the problem is. Example: I'm always +frustrated when [...] + +## Describe the solution you'd like +A clear and concise description of what you want to happen. + +## 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/ISSUE_TEMPLATE/ux-report.md b/.github/ISSUE_TEMPLATE/ux-report.md new file mode 100644 index 0000000..1f7c460 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/ux-report.md @@ -0,0 +1,17 @@ +--- +name: UX report +about: Was lightwalletd hard to use? It's not you, it's us. We want to hear about it. +title: 'UX: ' +labels: 'usability' +assignees: '' + +--- + + + +## What were you trying to do + +## What happened diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..3293c59 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,5 @@ +Please ensure this checklist is followed for any pull requests for this repo. This checklist must be checked by both the PR creator and by anyone who reviews the PR. +* [ ] Relevant documentation for this PR has to be completed and reviewed by @lindanlee before the PR can be merged +* [ ] A test plan for the PR must be documented in the PR notes and included in the test plan for the next regular release + +As a note, all CI tests need to be passing and all appropriate code reviews need to be done before this PR can be merged