bug_report.yml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. name: 错误报告
  2. description: File a bug report.
  3. title: "[错误报告]: 描述"
  4. labels: [""]
  5. body:
  6. - type: markdown
  7. attributes:
  8. value: |
  9. 请确认以下信息:
  10. 1. 请按此模板提交issues, 不按模板提交的问题将直接关闭
  11. 2. 如果你使用的版本号不是最新版, 那么你的 issue 大概率将会被直接关闭
  12. 3. 如果你的问题与该仓库无关或者可以直接在以往 issue 中找到, 那么你的 issue 大概率将会被直接关闭
  13. 4. 提交问题务必描述清楚、附上日志, 描述不清导致无法理解和分析的问题 大概率会被直接关闭
  14. - type: checkboxes
  15. id: confirm
  16. attributes:
  17. label: 确认
  18. description: 在提交 issue 之前, 请确认你已经阅读并确认以下内容, 如果 不全部勾选 或 勾选与事实不符 那么你的 issue 大概率将会被直接关闭
  19. options:
  20. - label: 我使用的版本是[最新版](https://central.sonatype.com/search?q=g:com.baomidou%20%20a:mybatis-plus&smo=true), 并且使用插件确认过项目里无依赖版本冲突
  21. required: true
  22. - label: 我已经在 [issue](https://github.com/baomidou/mybatis-plus/issues) 中搜索过, 确认问题没有被提出过
  23. required: true
  24. - label: 我已经修改标题, 将标题中的 描述 替换为遇到的问题
  25. required: true
  26. - type: input
  27. id: version
  28. attributes:
  29. label: 当前程序版本
  30. description: 遇到问题时程序所在的版本号
  31. validations:
  32. required: true
  33. - type: textarea
  34. id: what-happened
  35. attributes:
  36. label: 问题描述
  37. description: 请详细描述你碰到的问题
  38. placeholder: "问题描述"
  39. validations:
  40. required: true
  41. - type: textarea
  42. id: logs
  43. attributes:
  44. label: 详细堆栈日志
  45. description: 问题出现时,程序错误堆栈日志。
  46. render: bash