Skip to content

Commit e63f113

Browse files
committed
add: 添加issue模板
1 parent 660f170 commit e63f113

File tree

2 files changed

+122
-0
lines changed

2 files changed

+122
-0
lines changed

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
name: "\U0001F41E 上报bug / Bug report"
2+
description: "提交bug以让改进软件功能 / Create a report to help us improve"
3+
labels: ["待分类"]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
感谢你上报新的问题! / Thanks for taking the time to fill out this bug report!
9+
- type: textarea
10+
id: bug-description
11+
attributes:
12+
label: 描述一下这个bug / Describe the bug
13+
description: 请使用简介并详细的语句,来描述这个bug。 / A clear and concise description of what the bug is.
14+
placeholder: 我准备……我想要……但是实际上它……了 / I am doing ... What I expect is ... What actually happening is ...
15+
validations:
16+
required: true
17+
- type: textarea
18+
id: reproduction
19+
attributes:
20+
label: 复现步骤 / To Reproduce
21+
description: 按照下面的步骤,可以复现bug / Steps to reproduce the behavior
22+
placeholder: 首先……然后……接着…… / Go to '...', Click on '....', Scroll down to '....'
23+
validations:
24+
required: true
25+
- type: textarea
26+
id: expected
27+
attributes:
28+
label: 如果正常,应该是什么样 / Expected behavior
29+
description: 清楚简洁地描述,按这个步骤下来,本来应该运行得到的结果。 / A clear and concise description of what you expected to happen.
30+
placeholder: 它应该打印…… / It should be...
31+
validations:
32+
required: true
33+
- type: textarea
34+
id: screenshots
35+
attributes:
36+
label: 截图 / Screenshots
37+
description: 请放上你的截图,请给出完整的截图。 / Add screenshots to help explain your problem.
38+
validations:
39+
required: true
40+
- type: textarea
41+
id: logs
42+
attributes:
43+
label: 日志 / Logs
44+
description: 日志贴到这里,请给出完整的日志。 / Upload your log files.
45+
description: 请使用```markdown语法进行包裹!
46+
validations:
47+
required: true
48+
- type: input
49+
id: system
50+
attributes:
51+
label: 系统 / System
52+
placeholder: Win10 22H2 / Ubuntu 22.04
53+
validations:
54+
required: true
55+
- type: input
56+
id: version
57+
attributes:
58+
label: PACK包版本 / Version
59+
placeholder: 1.0.1.1
60+
validations:
61+
required: true
62+
63+
- type: checkboxes
64+
id: checkboxes
65+
attributes:
66+
label: 验证
67+
description: 提交前请确认已经做过以下操作 / Before submitting the issue, please make sure you do the following
68+
options:
69+
- label: 检查过该问题,之前没有人提过 / Check that there isn't already an issue that reports the same bug to avoid creating a duplicate.
70+
required: true
71+
- label: 提供了最小可复现工程或详细的复现步骤,确保开发者可以复现 / The provided reproduction is a [minimal reproducible example](https://stackoverflow.com/help/minimal-reproducible-example) of the bug.
72+
required: true
73+
- label: 已经提供了完整的报错信息、日志、截图,没有经过删减。
74+
required: true
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
name: "\U0001F680 请求某功能 / Feature request"
2+
description: "为这个项目出一个好点子 / Suggest an idea for this project"
3+
labels: ["待分类"]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
感谢你提供新的想法! / Thanks for taking the time to fill out this Feature request!
9+
- type: textarea
10+
id: problem
11+
attributes:
12+
label: 您的功能请求是否与解决某些问题有关?请描述一下。/ Is your feature request related to a problem? Please describe.
13+
validations:
14+
required: true
15+
- type: textarea
16+
id: description
17+
attributes:
18+
label: 描述您想要的解决方案 / Describe the solution you'd like
19+
validations:
20+
required: true
21+
- type: textarea
22+
id: usage
23+
attributes:
24+
label: 描述您想要的详细使用步骤描述 / Describe the solution you'd like to use in what way
25+
validations:
26+
required: true
27+
- type: textarea
28+
id: other
29+
attributes:
30+
label: 其他备注信息或截图 / Add any other context or screenshots about the feature request here
31+
validations:
32+
required: false
33+
- type: checkboxes
34+
id: checkboxes
35+
attributes:
36+
label: 确认信息
37+
description: 提交前请确认已经做过以下操作 / Before submitting the issue, please make sure you do the following
38+
options:
39+
- label: 检查过该需求,之前没有人提过 / Check that there isn't already an issue that reports the same bug to avoid creating a duplicate.
40+
required: true
41+
- label: 这个需求是真实存在的,并且对于本项目来说是必要的
42+
required: true
43+
- label: 我已经提供了该需求的清晰、详细、完整的方案,请按该方案进行实施
44+
required: true
45+
- label: 我认为我提供的信息已经足够,不需要其他人继续完善该需求的其他细节
46+
required: true
47+
- label: 我同意跟进该需求的实施进程,并在适时提供合理的解释与纠正
48+
required: true

0 commit comments

Comments
 (0)