47 lines
1012 B
YAML
47 lines
1012 B
YAML
name: "Bug Report"
|
|
about: "Something isn't working as expected"
|
|
title: "[Bug] "
|
|
labels:
|
|
- bug
|
|
body:
|
|
- type: textarea
|
|
id: description
|
|
attributes:
|
|
label: Description
|
|
description: What happened?
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: expected
|
|
attributes:
|
|
label: Expected Behavior
|
|
description: What did you expect to happen instead?
|
|
validations:
|
|
required: false
|
|
- type: textarea
|
|
id: steps
|
|
attributes:
|
|
label: Steps to Reproduce
|
|
description: How can this be reproduced?
|
|
placeholder: |
|
|
1. ...
|
|
2. ...
|
|
3. ...
|
|
validations:
|
|
required: false
|
|
- type: input
|
|
id: version
|
|
attributes:
|
|
label: Version
|
|
description: Which version or commit are you running?
|
|
placeholder: "v0.1.0 or commit hash"
|
|
validations:
|
|
required: false
|
|
- type: textarea
|
|
id: logs
|
|
attributes:
|
|
label: Relevant Logs
|
|
render: shell
|
|
validations:
|
|
required: false
|