Skip to content

Commit

Permalink
chore: add issue template for bug report
Browse files Browse the repository at this point in the history
  • Loading branch information
halajohn committed Sep 21, 2024
1 parent aacfb6c commit 57f411f
Showing 1 changed file with 94 additions and 0 deletions.
94 changes: 94 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
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: input
id: title
attributes:
label: Short summary
description: A brief description of the bug.
placeholder: "Enter a short summary of the bug."
validations:
required: true

- 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

0 comments on commit 57f411f

Please sign in to comment.