bug_report.yml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. name: Bug Report
  2. description: File a bug report.
  3. title: "[Bug]: 描述"
  4. labels: ["bug"]
  5. body:
  6. - type: markdown
  7. attributes:
  8. value: |
  9. 请确认以下信息:
  10. 1. 请按此模板提交issues,不按模板提交的问题将直接关闭。
  11. 2. 重复或与仓库无关的 issue 将会被直接关闭。
  12. - type: checkboxes
  13. id: confirm
  14. attributes:
  15. label: 确认
  16. description: 在提交 issue 之前,请确认你已经阅读并确认以下内容
  17. options:
  18. - label: 我已经升级至最新版本,并且项目里无依赖冲突
  19. required: true
  20. - lablel: 我已经在`issue`中搜索过,确认问题没有被提出过
  21. required: true
  22. - lablel: 我已经修改标题,将标题中的`描述`替换为遇到的问题
  23. required: true
  24. - type: input
  25. id: version
  26. attributes:
  27. label: 当前程序版本
  28. description: 遇到问题时程序所在的版本号
  29. validations:
  30. required: true
  31. - type: textarea
  32. id: what-happened
  33. attributes:
  34. label: 问题描述
  35. description: 请详细描述你碰到的问题
  36. placeholder: "问题描述"
  37. validations:
  38. required: true
  39. - type: textarea
  40. id: logs
  41. attributes:
  42. label: 详细堆栈日志
  43. description: 问题出现时,程序错误堆栈日志。
  44. render: bash