| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- # yaml-language-server: $schema=https://json.schemastore.org/github-issue-forms.json
- name: 🐛 遇到问题了
- description: 程序运行不正常、报错或功能失效(含 AI 分析问题)
- title: "[问题] "
- labels: ["bug"]
- body:
- - type: markdown
- attributes:
- value: |
- **简单的描述 + 关键截图** 是最有效的沟通方式。
- - type: dropdown
- id: bug-category
- attributes:
- label: 🏷️ 问题类别
- options:
- - AI 分析相关(报错、内容异常、提示词失效等)
- - 数据获取相关(爬不到新闻、平台失效等)
- - 通知推送相关(收不到消息、推送报错等)
- - 部署运行相关(Docker、Actions、Python 报错)
- - 其他
- validations:
- required: true
- - type: textarea
- id: bug-description
- attributes:
- label: 📝 描述发生了什么
- placeholder: |
- 请描述:
- 1. 你在做什么?
- 2. 出现了什么错误?(如果是 AI 问题,请贴出分析失败的错误提示)
- 3. 建议上传一张截图,这比文字更有力!
- validations:
- required: true
- - type: textarea
- id: error-logs
- attributes:
- label: 📋 错误日志/配置(可选)
- placeholder: |
- 贴出相关的错误日志或 config.yaml 片段(记得隐藏 API Key 等敏感信息):
- ```
- 在这里贴内容...
- ```
- validations:
- required: false
- - type: dropdown
- id: environment
- attributes:
- label: 🖥️ 使用环境
- options:
- - Docker (本地/NAS)
- - GitHub Actions
- - 本地 Python 运行
- - MCP Server 客户端 (Cherry Studio等)
- validations:
- required: true
|