-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add issue template for bug report
- Loading branch information
Showing
1 changed file
with
85 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
name: Bug Report | ||
description: Report a bug or issue with the project | ||
title: "[BUG] " | ||
labels: [bug] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to report a bug! Please fill in the following details. | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: A clear and detailed description of the bug. | ||
placeholder: "Enter a clear and concise description of what the bug is." | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: environment | ||
attributes: | ||
label: Environment | ||
description: The environment where this bug occurred (e.g., operating system, CPU arch, etc.). | ||
placeholder: "Enter details about the environment." | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: steps | ||
attributes: | ||
label: Steps to reproduce | ||
description: What are the steps to reproduce this issue? | ||
placeholder: | | ||
1. ... | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: expected | ||
attributes: | ||
label: Expected behavior | ||
description: What should have happened instead? | ||
placeholder: "Describe what you expected to happen." | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: actual | ||
attributes: | ||
label: Actual behavior | ||
description: What actually happened? | ||
placeholder: "Describe what actually happened." | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: version | ||
attributes: | ||
label: Version | ||
description: The version of the software where the bug was found. | ||
placeholder: "Enter the software version." | ||
validations: | ||
required: true | ||
|
||
- type: dropdown | ||
id: severity | ||
attributes: | ||
label: Severity | ||
description: How severe is the bug? | ||
options: | ||
- Critical | ||
- Major | ||
- Minor | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: additional_info | ||
attributes: | ||
label: Additional Information | ||
description: Any other context or screenshots related to the bug. | ||
placeholder: "Enter additional context or information." | ||
validations: | ||
required: false |