docs(community): 添加问题模板和缺陷报告模板

- 创建了 Bug Report 模板,支持中英双语,包含模块选择、版本信息、复现步骤等字段
- 添加了 Question 模板,用于使用咨询和技术问答
- 配置了预提交检查项,确保提交前完成必要验证
- 设计了结构化的表单字段,便于收集准确的问题信息
- 实现了多语言支持,提升社区协作体验
This commit is contained in:
GeWuYou 2026-04-14 13:10:57 +08:00 committed by gewuyou
parent 396bb1566a
commit c2ee2209fd
2 changed files with 15 additions and 1 deletions

View File

@ -84,7 +84,19 @@ body:
attributes: attributes:
label: "Minimal Repro / 最小复现" label: "Minimal Repro / 最小复现"
description: "Share a repository, gist, code snippet, or explain why a minimal repro is not yet available. / 提供仓库、gist、代码片段或说明暂时无法提供的原因。" description: "Share a repository, gist, code snippet, or explain why a minimal repro is not yet available. / 提供仓库、gist、代码片段或说明暂时无法提供的原因。"
placeholder: |
Please provide one of the following:
- A GitHub repository or sample project
- A gist or focused code snippet
- Or explain why a minimal repro is not yet available
请提供以下任一内容:
- GitHub 仓库或示例项目
- Gist 或聚焦代码片段
- 或说明暂时无法提供最小复现的原因
render: shell render: shell
validations:
required: true
- type: textarea - type: textarea
id: logs id: logs
attributes: attributes:

View File

@ -61,4 +61,6 @@ body:
id: environment id: environment
attributes: attributes:
label: "Relevant Environment / 相关环境" label: "Relevant Environment / 相关环境"
description: "Include versions or project context if that changes the answer. / 如果版本或项目上下文会影响答案,请补充。" description: "Include the framework version, runtime, engine version, or project context. If not applicable, write N/A. / 请补充框架版本、运行时、引擎版本或项目上下文;如不适用请填写 N/A。"
validations:
required: true