1
0
mirror of https://github.com/gofiber/fiber.git synced 2025-02-22 11:33:39 +00:00

Update issue templates

This commit is contained in:
fenny 2020-06-04 01:38:45 +02:00 committed by GitHub
parent d5a7c2bbbc
commit 805797c004
6 changed files with 135 additions and 63 deletions

28
.github/ISSUE_TEMPLATE/---bug.md vendored Normal file
View File

@ -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)
}
```

16
.github/ISSUE_TEMPLATE/---feature.md vendored Normal file
View File

@ -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**

23
.github/ISSUE_TEMPLATE/---question.md vendored Normal file
View File

@ -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()
// ..
}
```

View File

@ -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()
// ..
}
```

View File

@ -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**

View File

@ -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()
// ..
}
```