bug.yml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. name: Bug 报告
  2. description: 提交一个 bug
  3. labels:
  4. - "z:question"
  5. body:
  6. - type: markdown
  7. attributes:
  8. value: |
  9. 感谢你来到这里
  10. 在反馈前, 请确认你已经做了下面这些事情
  11. - 阅读过 [「提问的智慧」](https://github.com/ryanhanwu/How-To-Ask-Questions-The-Smart-Way/blob/main/README-zh_CN.md)
  12. - 阅读过 [「如何有效地报告 Bug」](https://www.chiark.greenend.org.uk/~sgtatham/bugs-cn.html)
  13. - 对照过 [Releases](https://github.com/mamoe/mirai/releases),相关问题未在近期更新中解决
  14. - 搜索了已有的 [issues](https://github.com/mamoe/mirai/issues?q=is%3Aissue) 列表中有没相关的信息
  15. - 阅读了 [Mirai 的相关文档](https://github.com/mamoe/mirai/tree/dev/docs)
  16. - type: textarea
  17. id: issue-description
  18. attributes:
  19. label: 问题描述
  20. description: 在此详细描述你遇到的问题
  21. validations:
  22. required: true
  23. - type: textarea
  24. id: reproduce
  25. attributes:
  26. label: 复现
  27. description: 在这里简略说明如何让这个问题再次发生
  28. placeholder: |
  29. 在这里简略说明如何让这个问题再次发生
  30. 可使用 1. 2. 3. 的列表格式,或其他任意恰当的格式
  31. 如果你不确定如何复现, 请尽量描述发生当时的情景
  32. 建议提供相关代码
  33. validations:
  34. required: true
  35. - type: input
  36. id: version-mirai-core
  37. attributes:
  38. label: mirai-core 版本
  39. description: "填写你正在使用的版本号,如 `2.8.2`"
  40. placeholder: 2.8.2
  41. validations:
  42. required: true
  43. - type: dropdown
  44. id: bot-protocol
  45. attributes:
  46. label: bot-protocol
  47. options:
  48. - ANDROID_PHONE
  49. - ANDROID_PAD
  50. - ANDROID_WATCH
  51. - IPAD
  52. - MACOS
  53. validations:
  54. required: true
  55. - type: textarea
  56. id: version-others
  57. attributes:
  58. label: 其他组件版本
  59. description: |
  60. 如果你正在通过 mirai-console 或其他间接使用 mirai-core 的中间件(如 mirai-native、mirai-api-http 或者其他第三方 SDK), 请同样提供版本号
  61. 如果你正在使用 mirai-console, 请在此处粘贴 `/status` 命令的结果
  62. placeholder: |
  63. mirai-api-http: `2.3.3`
  64. - type: textarea
  65. id: journal-system
  66. attributes:
  67. label: 系统日志
  68. description: |
  69. 请提供全面的相关日志. 请不要截图.
  70. 如果日志过大, 可以在 `补充信息` 上传文件.
  71. 如果你遇到的问题是 "消息收不到", "收消息报错" 等与协议有关的问题, 请一定提交日志. 若不提交日志, 你的问题可能会被直接关闭.
  72. render: 'text'
  73. validations:
  74. required: false
  75. - type: textarea
  76. id: journal-network
  77. attributes:
  78. label: 网络日志
  79. description: |
  80. 如果网络日志 (Net xxx) 不包含在系统日志中, 请额外提供网络日志. 若已经包含, 请忽略.
  81. 请提供全面的网络日志. 请不要截图.
  82. 若使用 Mirai Console 一般网络日志位于 bots/<****>/logs 里
  83. 如果日志过大, 可以在 `补充信息` 上传文件.
  84. render: text
  85. validations:
  86. required: false
  87. - type: textarea
  88. id: additional
  89. attributes:
  90. label: 补充信息
  91. description: 如有必要,你可以在下文继续添加其他信息
  92. - type: markdown
  93. attributes:
  94. value: |
  95. ----
  96. 在发出 issue 前, 请确认
  97. - 全部信息已经填写完毕, 特别是 「其他组件版本」
  98. - 报告中没有令人反感的语言
  99. - 「复现」的描述是否足够详细准确