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:
parent
d5a7c2bbbc
commit
805797c004
28
.github/ISSUE_TEMPLATE/---bug.md
vendored
Normal file
28
.github/ISSUE_TEMPLATE/---bug.md
vendored
Normal 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
16
.github/ISSUE_TEMPLATE/---feature.md
vendored
Normal 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
23
.github/ISSUE_TEMPLATE/---question.md
vendored
Normal 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()
|
||||
// ..
|
||||
}
|
||||
```
|
56
.github/ISSUE_TEMPLATE/bug_report.md
vendored
56
.github/ISSUE_TEMPLATE/bug_report.md
vendored
@ -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()
|
||||
// ..
|
||||
}
|
||||
```
|
||||
|
31
.github/ISSUE_TEMPLATE/feature_request.md
vendored
31
.github/ISSUE_TEMPLATE/feature_request.md
vendored
@ -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**
|
||||
|
44
.github/ISSUE_TEMPLATE/question.md
vendored
44
.github/ISSUE_TEMPLATE/question.md
vendored
@ -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…
x
Reference in New Issue
Block a user