mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-06 13:22:57 +00:00
* chore: remote issue title prefix from template Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * change feature request's label name Signed-off-by: Ruihang Xia <waynestxia@gmail.com> Signed-off-by: Ruihang Xia <waynestxia@gmail.com>
87 lines
2.1 KiB
YAML
87 lines
2.1 KiB
YAML
---
|
|
name: Bug report
|
|
description: Is something not working? Help us fix it!
|
|
labels: [ "bug" ]
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
Take some time to fill out this bug report. Thank you!
|
|
|
|
- type: dropdown
|
|
id: type
|
|
attributes:
|
|
label: What type of bug is this?
|
|
multiple: true
|
|
options:
|
|
- Configuration
|
|
- Crash
|
|
- Data corruption
|
|
- Incorrect result
|
|
- Locking issue
|
|
- Performance issue
|
|
- Unexpected error
|
|
- Other
|
|
validations:
|
|
required: true
|
|
|
|
- type: dropdown
|
|
id: subsystem
|
|
attributes:
|
|
label: What subsystems are affected?
|
|
description: You can pick multiple subsystems.
|
|
multiple: true
|
|
options:
|
|
- Standalone mode
|
|
- Frontend
|
|
- Datanode
|
|
- Meta
|
|
- Other
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: what-happened
|
|
attributes:
|
|
label: What happened?
|
|
description: |
|
|
Tell us what happened and also what you would have expected to
|
|
happen instead.
|
|
placeholder: "Describe the bug"
|
|
validations:
|
|
required: true
|
|
|
|
- type: input
|
|
id: os
|
|
attributes:
|
|
label: What operating system did you use?
|
|
description: |
|
|
Please provide OS, version, and architecture. For example:
|
|
Windows 10 x64, Ubuntu 21.04 x64, Mac OS X 10.5 ARM, Rasperry
|
|
Pi i386, etc.
|
|
placeholder: "Ubuntu 21.04 x64"
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: logs
|
|
attributes:
|
|
label: Relevant log output and stack trace
|
|
description: |
|
|
Please copy and paste any relevant log output or a stack
|
|
trace. This will be automatically formatted into code, so no
|
|
need for backticks.
|
|
render: bash
|
|
|
|
- type: textarea
|
|
id: reproduce
|
|
attributes:
|
|
label: How can we reproduce the bug?
|
|
description: |
|
|
Please walk us through and provide steps and details on how
|
|
to reproduce the issue. If possible, provide scripts that we
|
|
can run to trigger the bug.
|
|
render: bash
|
|
validations:
|
|
required: true
|