Skip to content

Commit d239a9f

Browse files
authored
Create bug_report.yml
1 parent 29a8139 commit d239a9f

File tree

1 file changed

+67
-0
lines changed

1 file changed

+67
-0
lines changed
Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
name: Bug report
2+
description: Report an issue
3+
labels: [pending triage]
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: Describe the bug
13+
description: A clear and concise description of what the bug is, what is expected? what is actually happening?. If you intend to submit a PR for this issue, tell us in the description. Thanks!
14+
placeholder: Bug description
15+
validations:
16+
required: true
17+
- type: textarea
18+
id: reproduction
19+
attributes:
20+
label: Reproduction
21+
description: Please provide a link to [codepen](https://codepen.io/topics/) or a GitHub repo that can reproduce the problem you ran into. A [minimal reproduction](https://stackoverflow.com/help/minimal-reproducible-example) is required unless you are absolutely sure that the issue is obvious and the provided information is enough to understand the problem. If a report is vague (e.g. just a generic error message) and has no reproduction, it will receive a "need reproduction" label. If no reproduction is provided after 3 days, it will be auto-closed.
22+
placeholder: Reproduction
23+
validations:
24+
required: true
25+
- type: textarea
26+
id: system-info
27+
attributes:
28+
label: System Info
29+
description: Output of `npx envinfo --system --npmPackages --binaries --browsers`
30+
render: shell
31+
placeholder: System, Binaries, Browsers
32+
validations:
33+
required: true
34+
- type: dropdown
35+
id: package-manager
36+
attributes:
37+
label: Used Package Manager
38+
description: Select the used package manager
39+
options:
40+
- npm
41+
- yarn
42+
- pnpm
43+
validations:
44+
required: true
45+
- type: checkboxes
46+
id: checkboxes
47+
attributes:
48+
label: Validations
49+
description: Before submitting the issue, please make sure you do the following
50+
options:
51+
- label: Read the the documentation in detail.
52+
required: true
53+
- label: Check that there isn't already an issue that reports the same bug to avoid creating a duplicate.
54+
required: true
55+
- label: Check that this is a concrete bug. For Q&A open a GitHub Discussion or join our [Discord Chat Server](https://discord.surmon.me).
56+
required: true
57+
- label: The provided reproduction is a [minimal reproducible example](https://stackoverflow.com/help/minimal-reproducible-example) of the bug.
58+
required: true
59+
- type: markdown
60+
attributes:
61+
label: 中文用户请注意
62+
value: |
63+
1. 请尽量用英文表达你的 Issue,你的问题是面向世界的([DeepL 机翻](https://www.deepl.com/translator) 亦可被接受)。
64+
2. 不要把内容堆彻在标题上,应按照模板格式,逻辑清晰地填写在内容区。
65+
3. 贴代码要提前格式化好,指定正确的语言,如非必要,请尽量以文本表达代码,而非截图。
66+
4. 报告问题前,请务必仔细阅读 README.md,及在已关闭的 Issue 中寻找与自身相关的问题,它极有可能已经被解决。
67+
5. 正式发布 Issue 时,本段声明应该被删除。

0 commit comments

Comments
 (0)