Albert Pai
commited on
Commit
·
f3e9c4c
1
Parent(s):
46c083c
chore: create bug report template
Browse files
.github/ISSUE_TEMPLATE/bug_report.yml
ADDED
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
name: "Bug report"
|
2 |
+
description: Create a report to help us improve
|
3 |
+
body:
|
4 |
+
- type: markdown
|
5 |
+
attributes:
|
6 |
+
value: |
|
7 |
+
Thank you for reporting an issue :pray:.
|
8 |
+
|
9 |
+
This issue tracker is for bugs and issues found with [Bolt.new](https://bolt.new).
|
10 |
+
If you experience issues related to WebContainer, please file an issue in our [WebContainer repo](https://github.com/stackblitz/webcontainer-core), or file an issue in our [StackBlitz core repo](https://github.com/stackblitz/core) for issues with StackBlitz.
|
11 |
+
|
12 |
+
The more information you fill in, the better we can help you.
|
13 |
+
- type: textarea
|
14 |
+
id: description
|
15 |
+
attributes:
|
16 |
+
label: Describe the bug
|
17 |
+
description: Provide a clear and concise description of what you're running into.
|
18 |
+
validations:
|
19 |
+
required: true
|
20 |
+
- type: input
|
21 |
+
id: link
|
22 |
+
attributes:
|
23 |
+
label: Link to the Bolt URL that caused the error
|
24 |
+
description: Please do not delete it after reporting!
|
25 |
+
validations:
|
26 |
+
required: true
|
27 |
+
- type: textarea
|
28 |
+
id: steps
|
29 |
+
attributes:
|
30 |
+
label: Steps to reproduce
|
31 |
+
description: Describe the steps we have to take to reproduce the behavior.
|
32 |
+
placeholder: |
|
33 |
+
1. Go to '...'
|
34 |
+
2. Click on '....'
|
35 |
+
3. Scroll down to '....'
|
36 |
+
4. See error
|
37 |
+
validations:
|
38 |
+
required: true
|
39 |
+
- type: textarea
|
40 |
+
id: expected
|
41 |
+
attributes:
|
42 |
+
label: Expected behavior
|
43 |
+
description: Provide a clear and concise description of what you expected to happen.
|
44 |
+
validations:
|
45 |
+
required: true
|
46 |
+
- type: textarea
|
47 |
+
id: screenshots
|
48 |
+
attributes:
|
49 |
+
label: Screenshots
|
50 |
+
description: If applicable, add screenshots to help explain your problem.
|
51 |
+
- type: textarea
|
52 |
+
id: platform
|
53 |
+
attributes:
|
54 |
+
label: Platform
|
55 |
+
value: |
|
56 |
+
- OS: [e.g. macOS, Windows, Linux]
|
57 |
+
- Browser: [e.g. Chrome, Safari, Firefox]
|
58 |
+
- Version: [e.g. 91.1]
|
59 |
+
- type: textarea
|
60 |
+
id: additional
|
61 |
+
attributes:
|
62 |
+
label: Additional context
|
63 |
+
description: Add any other context about the problem here.
|