63 lines
1.5 KiB
YAML
63 lines
1.5 KiB
YAML
name: Bug Report
|
|
description: Report a bug to help us improve
|
|
labels: ["bug"]
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
Thanks for taking the time to report this bug!
|
|
|
|
- type: textarea
|
|
id: description
|
|
attributes:
|
|
label: Description
|
|
description: A clear description of the bug
|
|
placeholder: "When I do X, Y happens instead of Z..."
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: steps
|
|
attributes:
|
|
label: Steps to Reproduce
|
|
description: Steps to reproduce the behavior
|
|
placeholder: |
|
|
1. Go to '...'
|
|
2. Click on '...'
|
|
3. Scroll to '...'
|
|
4. See error
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: expected
|
|
attributes:
|
|
label: Expected Behavior
|
|
description: What did you expect to happen?
|
|
validations:
|
|
required: true
|
|
|
|
- type: input
|
|
id: browser
|
|
attributes:
|
|
label: Browser
|
|
description: Which browser(s) are you experiencing the issue?
|
|
placeholder: "Chrome 120, Firefox 121, Safari 17..."
|
|
|
|
- type: textarea
|
|
id: screenshots
|
|
attributes:
|
|
label: Screenshots
|
|
description: Add screenshots if applicable
|
|
|
|
- type: dropdown
|
|
id: severity
|
|
attributes:
|
|
label: Severity
|
|
options:
|
|
- Low - Minor inconvenience
|
|
- Medium - Affects functionality
|
|
- High - Major feature broken
|
|
- Critical - Site unusable
|
|
validations:
|
|
required: true |