mirror of https://github.com/gofiber/fiber.git
Update issue templates
parent
d5a7c2bbbc
commit
805797c004
|
@ -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)
|
||||
}
|
||||
```
|
|
@ -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**
|
|
@ -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()
|
||||
// ..
|
||||
}
|
||||
```
|
|
@ -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()
|
||||
// ..
|
||||
}
|
||||
```
|
||||
|
|
|
@ -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**
|
||||
|
|
|
@ -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()
|
||||
// ..
|
||||
}
|
||||
```
|
||||
|
|
Loading…
Reference in New Issue