01-bug-report.yml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. # yaml-language-server: $schema=https://json.schemastore.org/github-issue-forms.json
  2. name: 🐛 遇到问题了
  3. description: 程序运行不正常、报错或功能失效(含 AI 分析问题)
  4. title: "[问题] "
  5. labels: ["bug"]
  6. body:
  7. - type: markdown
  8. attributes:
  9. value: |
  10. ### ⚠️ 提交前必读
  11. **请确保你正在使用 TrendRadar 的最新版本。**
  12. 很多问题在最新代码中可能已经修复。如果你使用的是旧版本,我将无法处理,请先更新后再试。
  13. **简单的描述 + 关键截图** 是最有效的沟通方式。
  14. - type: input
  15. id: version
  16. attributes:
  17. label: 📦 TrendRadar 版本
  18. description: 请务必提供。(如:v5.2.0 或 git commit id)
  19. placeholder: v5.2.0 或 commit hash
  20. validations:
  21. required: true
  22. - type: input
  23. id: mcp-version
  24. attributes:
  25. label: 🔌 MCP Server 版本 (可选)
  26. description: 如果你是通过 MCP 使用,请填写 MCP Server 的版本。
  27. placeholder: v3.1.6 (非 MCP 用户留空)
  28. validations:
  29. required: false
  30. - type: dropdown
  31. id: bug-category
  32. attributes:
  33. label: 🏷️ 问题类别
  34. options:
  35. - AI 分析相关(报错、内容异常、提示词失效等)
  36. - 数据获取相关(爬不到新闻、平台失效等)
  37. - 通知推送相关(收不到消息、推送报错等)
  38. - 部署运行相关(Docker、Actions、Python 报错)
  39. - 其他
  40. validations:
  41. required: true
  42. - type: textarea
  43. id: bug-description
  44. attributes:
  45. label: 📝 描述发生了什么
  46. placeholder: |
  47. 请描述:
  48. 1. 你在做什么?
  49. 2. 出现了什么错误?(如果是 AI 问题,请贴出分析失败的错误提示)
  50. 3. 建议上传一张截图,这比文字更有力!
  51. validations:
  52. required: true
  53. - type: textarea
  54. id: error-logs
  55. attributes:
  56. label: 📋 错误日志/配置(可选)
  57. placeholder: |
  58. 贴出相关的错误日志或 config.yaml 片段(记得隐藏 API Key 等敏感信息):
  59. ```
  60. 在这里贴内容...
  61. ```
  62. validations:
  63. required: false
  64. - type: dropdown
  65. id: environment
  66. attributes:
  67. label: 🖥️ 使用环境
  68. options:
  69. - Docker (本地/NAS)
  70. - GitHub Actions
  71. - 本地 Python 运行
  72. - MCP Server 客户端 (Cherry Studio等)
  73. validations:
  74. required: true