mirror of
https://github.com/gofiber/storage.git
synced 2025-12-19 00:38:24 +08:00
80 lines
2.8 KiB
YAML
80 lines
2.8 KiB
YAML
name: "\U0001F41B Bug Report"
|
|
title: "\U0001F41B [Bug]: "
|
|
description: Create a bug report to help us fix it.
|
|
labels: ["☢️ Bug"]
|
|
|
|
body:
|
|
- type: markdown
|
|
id: notice
|
|
attributes:
|
|
value: |
|
|
### Notice
|
|
- Dont't forget you can ask your questions on our [Discord server](https://gofiber.io/discord).
|
|
- If you think Fiber storage don't have a nice feature that you think, open the issue with **✏️ Feature Request** template.
|
|
- Write your issue with clear and understandable English.
|
|
- type: textarea
|
|
id: description
|
|
attributes:
|
|
label: "Bug Description"
|
|
description: "A clear and detailed description of what the bug is."
|
|
placeholder: "Explain your problem as clear and detailed."
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: how-to-reproduce
|
|
attributes:
|
|
label: How to Reproduce
|
|
description: "Steps to reproduce the behavior and what should be observed in the end."
|
|
placeholder: "Tell us step by step how we can replicate your problem and what we should see in the end."
|
|
value: |
|
|
Steps to reproduce the behavior:
|
|
1. Go to '....'
|
|
2. Click on '....'
|
|
3. Do '....'
|
|
4. See '....'
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: expected-behavior
|
|
attributes:
|
|
label: Expected Behavior
|
|
description: "A clear and detailed description of what you think should happens."
|
|
placeholder: "Tell us what storage should normally do."
|
|
validations:
|
|
required: true
|
|
- type: input
|
|
id: version
|
|
attributes:
|
|
label: "Storage package Version"
|
|
description: "Some bugs may be fixed in future storage releases, so we have to know your storage package version."
|
|
placeholder: "Write your storage version. (v1.0.0, v1.1.0...)"
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: snippet
|
|
attributes:
|
|
label: "Code Snippet (optional)"
|
|
description: "For some issues, we need to know some parts of your code."
|
|
placeholder: "Share a code you think related to the issue."
|
|
render: go
|
|
value: |
|
|
package main
|
|
|
|
import "github.com/gofiber/storage/%package%"
|
|
|
|
func main() {
|
|
// Steps to reproduce
|
|
}
|
|
- type: checkboxes
|
|
id: terms
|
|
attributes:
|
|
label: "Checklist:"
|
|
description: "By submitting this issue, you confirm that:"
|
|
options:
|
|
- label: "I agree to follow Fiber's [Code of Conduct](https://github.com/gofiber/fiber/blob/master/.github/CODE_OF_CONDUCT.md)."
|
|
required: true
|
|
- label: "I have checked for existing issues that describe my problem prior to opening this one."
|
|
required: true
|
|
- label: "I understand that improperly formatted bug reports may be closed without explanation."
|
|
required: true
|