01-bug-report.yml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. - type: dropdown
  12. id: bug-category
  13. attributes:
  14. label: 🏷️ 问题类别
  15. options:
  16. - AI 分析相关(报错、内容异常、提示词失效等)
  17. - 数据获取相关(爬不到新闻、平台失效等)
  18. - 通知推送相关(收不到消息、推送报错等)
  19. - 部署运行相关(Docker、Actions、Python 报错)
  20. - 其他
  21. validations:
  22. required: true
  23. - type: textarea
  24. id: bug-description
  25. attributes:
  26. label: 📝 描述发生了什么
  27. placeholder: |
  28. 请描述:
  29. 1. 你在做什么?
  30. 2. 出现了什么错误?(如果是 AI 问题,请贴出分析失败的错误提示)
  31. 3. 建议上传一张截图,这比文字更有力!
  32. validations:
  33. required: true
  34. - type: textarea
  35. id: error-logs
  36. attributes:
  37. label: 📋 错误日志/配置(可选)
  38. placeholder: |
  39. 贴出相关的错误日志或 config.yaml 片段(记得隐藏 API Key 等敏感信息):
  40. ```
  41. 在这里贴内容...
  42. ```
  43. validations:
  44. required: false
  45. - type: dropdown
  46. id: environment
  47. attributes:
  48. label: 🖥️ 使用环境
  49. options:
  50. - Docker (本地/NAS)
  51. - GitHub Actions
  52. - 本地 Python 运行
  53. - MCP Server 客户端 (Cherry Studio等)
  54. validations:
  55. required: true