Skip to content

Commit 5a1d5a0

Browse files
authored
Create bug_report.yml
1 parent db9386f commit 5a1d5a0

1 file changed

Lines changed: 62 additions & 0 deletions

File tree

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
name: Bug Report
2+
description: Report a reproducible bug or regression.
3+
body:
4+
- type: textarea
5+
id: description
6+
attributes:
7+
label: Description
8+
description: A clear and concise description of what the bug is.
9+
validations:
10+
required: true
11+
- type: textarea
12+
id: repro
13+
attributes:
14+
label: Reproduction steps
15+
description: How do you trigger this bug? Please walk us through it step by step.
16+
value: |
17+
1.
18+
2.
19+
3.
20+
validations:
21+
required: true
22+
- type: textarea
23+
id: code
24+
attributes:
25+
label: Code
26+
value: |
27+
```js
28+
// code goes here
29+
```
30+
validations:
31+
required: true
32+
- type: textarea
33+
id: example
34+
attributes:
35+
label: Live example
36+
value: |
37+
Link to [jsfiddle](https://jsfiddle.net/) or [codesandbox](https://codesandbox.io/) demonstrating the bug.
38+
validations:
39+
required: true
40+
- type: textarea
41+
id: screenshots
42+
attributes:
43+
label: Screenshots
44+
description: If applicable, add screenshots to help explain your problem (drag and drop the image).
45+
validations:
46+
required: false
47+
- type: input
48+
id: version
49+
attributes:
50+
label: Library Version
51+
description: What version of the library are you using?
52+
placeholder: v
53+
validations:
54+
required: true
55+
- type: input
56+
id: three_version
57+
attributes:
58+
label: Three.js Version
59+
description: What version of three.js are you using?
60+
placeholder: r
61+
validations:
62+
required: true

0 commit comments

Comments
 (0)