mirror of
https://github.com/shuaiplus/nodewarden.git
synced 2026-06-20 13:00:39 +00:00
70 lines
1.9 KiB
YAML
70 lines
1.9 KiB
YAML
name: "Bug Report"
|
|
description: "Report a reproducible bug / 反馈可复现问题"
|
|
title: "[Bug] "
|
|
labels: ["bug", "needs-triage"]
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
Thanks for reporting. Please provide enough detail so maintainers can reproduce quickly.
|
|
感谢反馈,请尽量提供可复现信息,方便快速定位。
|
|
|
|
- type: checkboxes
|
|
id: checklist
|
|
attributes:
|
|
label: Pre-check / 提交前确认
|
|
options:
|
|
- label: I have searched existing issues and did not find a duplicate. / 我已搜索现有 issue,确认不是重复问题。
|
|
required: true
|
|
- label: I have read README and Project Wiki / 我已阅读 README 与 项目 Wiki。
|
|
required: true
|
|
|
|
- type: input
|
|
id: version
|
|
attributes:
|
|
label: Version / 版本
|
|
description: "Which version of NodeWarden are you using? Please provide the exact version or commit hash."
|
|
placeholder: "1.0.0"
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: reproduce_steps
|
|
attributes:
|
|
label: Steps to Reproduce / 复现步骤
|
|
placeholder: |
|
|
1. Start service with ...
|
|
2. Open ...
|
|
3. Click ...
|
|
4. Observe ...
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: expected
|
|
attributes:
|
|
label: Expected Behavior / 预期行为
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: actual
|
|
attributes:
|
|
label: Actual Behavior / 实际行为
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: logs
|
|
attributes:
|
|
label: Logs and Screenshots / 日志与截图
|
|
description: "Please paste key logs (docker logs / browser console / network errors)."
|
|
render: shell
|
|
validations:
|
|
required: false
|
|
|
|
- type: textarea
|
|
id: extra
|
|
attributes:
|
|
label: Additional Context / 补充信息
|
|
description: "Any workaround, frequency, impact scope, etc." |