68 lines
2.2 KiB
YAML
68 lines
2.2 KiB
YAML
name: 🐛 Bug Report
|
|
description: File a bug report
|
|
labels: ["bug"]
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: >
|
|
### ✋ **This is bug tracker, not a support forum**
|
|
|
|
If something isn't working right, you have questions or need help, [**get in touch on the Discussions**](https://github.com/tbnobody/OpenDTU/discussions).
|
|
|
|
Please quickly search existing issues first before submitting a bug.
|
|
- type: textarea
|
|
id: what-happened
|
|
attributes:
|
|
label: What happened?
|
|
description: A clear and concise description of what the bug is.
|
|
placeholder: Tell us what the problem is.
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: how-to-reproduce
|
|
attributes:
|
|
label: To Reproduce Bug
|
|
description: Steps to reproduce the behavior, if consistently possible.
|
|
placeholder: Tell us how to make the bug appear.
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: expected-behavior
|
|
attributes:
|
|
label: Expected Behavior
|
|
description: A clear and concise description of what you expected to happen.
|
|
placeholder: Tell us what you expected to happen.
|
|
validations:
|
|
required: true
|
|
- type: dropdown
|
|
id: install_format
|
|
attributes:
|
|
label: Install Method
|
|
description: How did you install OpenDTU?
|
|
options:
|
|
- Pre-Compiled binary from GitHub
|
|
- Self-Compiled
|
|
validations:
|
|
required: true
|
|
- type: input
|
|
id: version
|
|
attributes:
|
|
label: What git-hash/version of OpenDTU?
|
|
description: You can find this in by going to Info -> System
|
|
placeholder: "e.g. 359d513"
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: logs
|
|
attributes:
|
|
label: Relevant log/trace output
|
|
description: Please copy and paste any relevant log output if you have it. This will be automatically formatted into code, so no need for backticks.
|
|
render: Shell
|
|
- type: textarea
|
|
attributes:
|
|
label: Anything else?
|
|
description: |
|
|
Links? References? Anything that will give us more context about the issue you are encountering!
|
|
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
|
|
validations:
|
|
required: false |