From 805797c0042fa273e59c19763a20f7df99d3862c Mon Sep 17 00:00:00 2001 From: fenny <25108519+Fenny@users.noreply.github.com> Date: Thu, 4 Jun 2020 01:38:45 +0200 Subject: [PATCH] Update issue templates --- .github/ISSUE_TEMPLATE/---bug.md | 28 ++++++++++++ .github/ISSUE_TEMPLATE/---feature.md | 16 +++++++ .github/ISSUE_TEMPLATE/---question.md | 23 ++++++++++ .github/ISSUE_TEMPLATE/bug_report.md | 56 ++++++++++++----------- .github/ISSUE_TEMPLATE/feature_request.md | 31 +++++++------ .github/ISSUE_TEMPLATE/question.md | 44 +++++++++--------- 6 files changed, 135 insertions(+), 63 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/---bug.md create mode 100644 .github/ISSUE_TEMPLATE/---feature.md create mode 100644 .github/ISSUE_TEMPLATE/---question.md diff --git a/.github/ISSUE_TEMPLATE/---bug.md b/.github/ISSUE_TEMPLATE/---bug.md new file mode 100644 index 00000000..bfcf951f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/---bug.md @@ -0,0 +1,28 @@ +--- +name: "\U0001F41B Bug" +about: Create a report to help us improve +title: "\U0001F41B " +labels: 'Type: Bug' +assignees: '' + +--- + +**Fiber version** + +**Issue description** + +**Code snippet** + +```go +package main + +import "github.com/gofiber/fiber" + +func main() { + app := fiber.New() + + // Steps to reproduce + + app.Listen(3000) +} +``` diff --git a/.github/ISSUE_TEMPLATE/---feature.md b/.github/ISSUE_TEMPLATE/---feature.md new file mode 100644 index 00000000..c3baf503 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/---feature.md @@ -0,0 +1,16 @@ +--- +name: "\U0001F680 Feature" +about: Suggest an idea for this project +title: "\U0001F680 " +labels: 'Type: Feature' +assignees: '' + +--- + +**Is your feature request related to a problem?** + +**Describe the solution you'd like** + +**Describe alternatives you've considered** + +**Additional context** diff --git a/.github/ISSUE_TEMPLATE/---question.md b/.github/ISSUE_TEMPLATE/---question.md new file mode 100644 index 00000000..eb0e2ff1 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/---question.md @@ -0,0 +1,23 @@ +--- +name: "\U0001F914 Question" +about: Ask a question so we can help +title: "\U0001F914 " +labels: 'Type: Question' +assignees: '' + +--- + +**Question description** + +**Code snippet** _Optional_ + +```go +package main + +import "github.com/gofiber/fiber" + +func main() { + app := fiber.New() + // .. +} +``` diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 8e47ce5f..446f83fe 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -1,27 +1,29 @@ ---- -name: Bug report -about: Create a report to help us improve -title: "🐞 " -labels: bug -assignees: "" ---- -**Fiber version/commit** - -**Issue description** - -**Expected behavior** - -**Steps to reproduce** - -**Code snippet** - -```go -package main - -import "github.com/gofiber/fiber" - -func main() { - app := fiber.New() - // .. -} -``` +--- +name: Bug report +about: Create a report to help us improve +title: "\U0001F41E " +labels: bug +assignees: '' + +--- + +**Fiber version/commit** + +**Issue description** + +**Expected behavior** + +**Steps to reproduce** + +**Code snippet** + +```go +package main + +import "github.com/gofiber/fiber" + +func main() { + app := fiber.New() + // .. +} +``` diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 124f92e9..603b2292 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -1,15 +1,16 @@ ---- -name: Feature request -about: Suggest an idea for this project -title: "🔥 " -labels: enhancement -assignees: "" ---- - -**Is your feature request related to a problem?** - -**Describe the solution you'd like** - -**Describe alternatives you've considered** - -**Additional context** +--- +name: Feature request +about: Suggest an idea for this project +title: "\U0001F525 " +labels: enhancement +assignees: '' + +--- + +**Is your feature request related to a problem?** + +**Describe the solution you'd like** + +**Describe alternatives you've considered** + +**Additional context** diff --git a/.github/ISSUE_TEMPLATE/question.md b/.github/ISSUE_TEMPLATE/question.md index 2e5b0203..7779bb0e 100644 --- a/.github/ISSUE_TEMPLATE/question.md +++ b/.github/ISSUE_TEMPLATE/question.md @@ -1,21 +1,23 @@ ---- -name: Question -about: Ask a question so we can help -title: "🤔 " -labels: question -assignees: "" ---- -**Question description** - -**Code snippet (optional)** - -```go -package main - -import "github.com/gofiber/fiber" - -func main() { - app := fiber.New() - // .. -} -``` +--- +name: Question +about: Ask a question so we can help +title: "\U0001F914 " +labels: question +assignees: '' + +--- + +**Question description** + +**Code snippet (optional)** + +```go +package main + +import "github.com/gofiber/fiber" + +func main() { + app := fiber.New() + // .. +} +```