From a0f931c1de6b7a4f36c88be524f8103380de20ed Mon Sep 17 00:00:00 2001 From: Steven Kalinke Date: Wed, 1 Jul 2020 08:57:48 +0200 Subject: [PATCH] Add GitHub Issue Templates --- .github/ISSUE_TEMPLATE/bug-report.md | 32 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/code-review.md | 21 +++++++++++++++ .github/ISSUE_TEMPLATE/feature-request.md | 24 +++++++++++++++++ 3 files changed, 77 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug-report.md create mode 100644 .github/ISSUE_TEMPLATE/code-review.md create mode 100644 .github/ISSUE_TEMPLATE/feature-request.md diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md new file mode 100644 index 000000000..7c1cd72c5 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.md @@ -0,0 +1,32 @@ +--- +name: "\U0001F41E Bug report" +about: Create a report to help us improve +title: "\U0001F41E [Describe Your Bug]" +labels: '' +assignees: '' + +--- + +**Describe the bug/issue** +A clear and concise description of what the bug is. + +**To Reproduce** +Steps to reproduce the behavior: +1. ... +2. ... +3. ... + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**Your System** +``` +Windows build number: (run "ver" at a command prompt) +Flow Launcher version: (Settings => About) +``` +**Flow Launcher Error Log** + diff --git a/.github/ISSUE_TEMPLATE/code-review.md b/.github/ISSUE_TEMPLATE/code-review.md new file mode 100644 index 000000000..caa334ca7 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/code-review.md @@ -0,0 +1,21 @@ +--- +name: "\U0001F50E Code Review" +about: Describe (bad) code that needs to be improved +title: "\U0001F50E [Describe Problematic Code]" +labels: '' +assignees: '' + +--- + +**Point to the corresponding file and line number(s) which could be improved.** + +Click on the line number in GitHub to create an anchored link to the corresponding code section. For example: + + +https://github.com/Flow-Launcher/Flow.Launcher/blob/master/Flow.Launcher/Storage/TopMostRecord.cs#L8 + +Provide your alternative implementation idea: + +``` +Code +``` diff --git a/.github/ISSUE_TEMPLATE/feature-request.md b/.github/ISSUE_TEMPLATE/feature-request.md new file mode 100644 index 000000000..187a8b687 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.md @@ -0,0 +1,24 @@ +--- +name: "⭐ Feature request" +about: Suggest an idea for this project +title: "⭐ [Describe Your Feature]" +labels: '' +assignees: '' + +--- + +**Is your feature request related to a problem? Please describe.** + +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**Describe the solution you'd like** + +A clear and concise description of what you want to happen. + +**Describe 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.