Initial commit

This commit is contained in:
CNlaojing
2025-03-19 13:02:51 +08:00
commit 6752a5cd9f
41 changed files with 7792 additions and 0 deletions
+60
View File
@@ -0,0 +1,60 @@
name: "代码问题反馈"
description: "此模板仅用于反馈代码相关问题,例如出现编译错误、运行报错、逻辑缺陷。"
title: "[Code Issue]: "
labels: ["bug", "code issue"]
assignees: []
body:
- type: markdown
attributes:
value: |
**⚠ 注意:此处仅受理代码本身的问题,包括但不限于编译错误、运行报错、逻辑异常等。**
**如果是接口配置或环境部署等问题,请自行阅读文档或在讨论区寻求帮助。**
**如果是意见或建议,请使用 [意见模板](?template=opinion.yml)。**
感谢你的配合!
- type: textarea
id: description
attributes:
label: "问题描述"
description: "请清晰、简要地描述代码出现的问题。"
placeholder: "例如:运行时报错xxx,或逻辑存在xxx。"
validations:
required: true
- type: textarea
id: steps
attributes:
label: "复现步骤"
description: "请提供完整的复现步骤,以便我们定位和解决问题。"
placeholder: |
1. ...
2. ...
3. ...
validations:
required: true
- type: input
id: environment
attributes:
label: "环境信息"
description: "如编译器、操作系统、依赖版本等。"
placeholder: "示例:Windows 10, Node.js v14, Python 3.9, etc."
- type: textarea
id: logs
attributes:
label: "日志信息(如适用)"
description: "如果有报错日志或截图,可以贴在此处。"
placeholder: "请粘贴日志内容或相关截图链接(可选)"
validations:
required: false
- type: textarea
id: additional
attributes:
label: "补充信息"
description: "如果有更多信息,可在此补充。"
placeholder: "任何与问题相关的额外背景说明..."
validations:
required: false
+48
View File
@@ -0,0 +1,48 @@
name: "意见或建议"
description: "如果你有对项目的需求、功能建议、或其他意见,请使用此模板。"
title: "[Opinion]: "
labels: ["enhancement", "discussion"]
assignees: []
body:
- type: markdown
attributes:
value: |
**⚠ 注意:此处不用于反馈代码报错或编译问题,如果是纯代码报错或逻辑问题,请使用 [代码问题反馈模板](?template=code_issue.yml)。**
感谢你的宝贵意见或建议,我们会酌情采纳!
- type: textarea
id: suggestion
attributes:
label: "意见/建议内容"
description: "请简要描述你的想法或建议。"
placeholder: "例如:希望新增xx功能,或者修改xx逻辑。"
validations:
required: true
- type: textarea
id: reason
attributes:
label: "为什么需要这个功能或修改?"
description: "简单说明你提出此意见/建议的原因或背景需求。"
placeholder: "例如:在实际项目中遇到xx需求场景;希望提升xx效率;等等。"
validations:
required: true
- type: input
id: relevance
attributes:
label: "相关链接或参考"
description: "如果你有看到类似实现或参考资料,可在此提供链接。"
placeholder: "例如:相关文档链接、RFC、规范文档等"
validations:
required: false
- type: textarea
id: additional
attributes:
label: "补充信息"
description: "如果有更多信息,可在此补充。"
placeholder: "任何与意见或建议相关的额外说明..."
validations:
required: false