From 8c4416434e2891ec56d47a0e503e172a6918d80b Mon Sep 17 00:00:00 2001 From: George Lima Date: Fri, 31 May 2019 17:27:05 -0300 Subject: [PATCH] feat(github): add issues template --- .github/ISSUE_TEMPLATE/bug_report.md | 32 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 16 ++++++++++++ .github/ISSUE_TEMPLATE/question.md | 20 ++++++++++++++ 3 files changed, 68 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/ISSUE_TEMPLATE/question.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..e2622d0 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,32 @@ +--- +name: Bug Report 🐞 +about: Something isn't working as expected? Here is the right place to report. +--- + +## Description + +Describe the issue that you're seeing. + +### Steps to reproduce + +Clear steps describing how to reproduce the issue. This makes your issue _much_ easier to diagnose (seriously). + +### Expected result + +What should happen? + +### Actual result + +What happened. + +### Environment + +- What version of Zepio are you using? +- Which Operating System are you using (macOS/Linux/Windows)? What version? +- Are you using an external `zcashd` daemon or the one built inside Zepio? + +### Logs + +- `%APPDATA%/zepio/main-process-logs.txt` on Windows +- `$XDG_CONFIG_HOME/zepio/main-process-logs.txt` or `~/.config/zepio/main-process-logs.txt` on Linux +- `~/Library/Application Support/zepio/main-process-logs.txt` on macOS diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..fbaf193 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,16 @@ +--- +name: Feature Request 💡 +about: Suggest a new idea for the project. +--- + +## Summary + +Brief explanation of the feature. + +### Basic example + +If the proposal involves a new or changed API, include a basic code example. Omit this section if it's not applicable. + +### Motivation + +Why are we doing this? What use cases does it support? What is the expected outcome? diff --git a/.github/ISSUE_TEMPLATE/question.md b/.github/ISSUE_TEMPLATE/question.md new file mode 100644 index 0000000..2c83694 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/question.md @@ -0,0 +1,20 @@ +--- +name: Question 🤔 +about: Usage question or discussion about Gatsby. +--- + +## Summary + +## Relevant information + +### Environment (if relevant) + +- What version of Zepio are you using? +- Which Operating System are you using (macOS/Linux/Windows)? What version? +- Are you using an external `zcashd` daemon or the one built inside Zepio? + +### Logs (if relevant) + +- `%APPDATA%/zepio/main-process-logs.txt` on Windows +- `$XDG_CONFIG_HOME/zepio/main-process-logs.txt` or `~/.config/zepio/main-process-logs.txt` on Linux +- `~/Library/Application Support/zepio/main-process-logs.txt` on macOS