Skip to content

feat: add issue template #472

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions .github/ISSUE_TEMPLATE/1_bug_report.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Bug Report
description: File a bug report
title: '[Bug]: '
labels: []
body:
- type: markdown
attributes:
value: |
请填写该错误报告。

- type: input
id: component
attributes:
label: 组件
description: 哪个组件有问题?
placeholder: 请输入组件名字
validations:
required: true

- type: dropdown
id: version
attributes:
label: 版本
description: 该问题存在于什么版本?
multiple: true
options:
- 3.x
- 4.x
- 5.x
validations:
required: true

- type: textarea
id: expect
attributes:
label: 期望的结果
description: 期望的结果是什么?

- type: textarea
id: current
attributes:
label: 实际的结果
description: 实际的结果是什么?

30 changes: 30 additions & 0 deletions .github/ISSUE_TEMPLATE/2_feature_request.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Feature Request
description: Suggest an idea for this project
title: '[Feature Request]: '
labels: []
body:
- type: markdown
attributes:
value: |
为了有效地审核功能请求,请填写此表格。

- type: dropdown
id: feature
attributes:
label: 功能
options:
- 添加新的组件
- 增强现有功能
- 修改文档
- 补全单测
- 其他
validations:
required: true

- type: textarea
id: description
attributes:
label: 详细描述
description: 请描述您的功能请求
validations:
required: true
Loading