Skip to content

Commit 3b3eebc

Browse files
authored
Add extra reports for bug and feature requests (#1476)
1 parent 644c3a0 commit 3b3eebc

File tree

2 files changed

+148
-0
lines changed

2 files changed

+148
-0
lines changed
+105
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
name: Bug Report
2+
description: File a bug report
3+
labels: ["triage-needed"]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for taking the time to fill out this bug report!
9+
**NOTE** A number of issues reported against Substrate-Connect are often found to already be fixed in more current versions of the project.
10+
Before reporting an issue, please verify the version you are running (check package.json for installed version) and compare it to the latest release.
11+
If they differ, please update your version of Substrate-Connect to the latest possible and retry your command before creating an issue.
12+
13+
- type: textarea
14+
id: description
15+
attributes:
16+
label: Issue Description
17+
description: Please explain your issue
18+
value: "Describe your issue"
19+
validations:
20+
required: true
21+
22+
- type: textarea
23+
id: reproducer
24+
attributes:
25+
label: Steps to reproduce the issue
26+
description: Please explain the steps to reproduce the issue, including configuration files needed.
27+
value: "Steps to reproduce the issue\n1.\n2.\n3.\n"
28+
validations:
29+
required: true
30+
31+
- type: textarea
32+
id: received_results
33+
attributes:
34+
label: Describe the results you received
35+
description: Please explain the results you are noticing, including stacktrace and error logs.
36+
value: "Describe the results you received"
37+
validations:
38+
required: true
39+
40+
- type: textarea
41+
id: expected_results
42+
attributes:
43+
label: Describe the results you expected
44+
description: Please explain the results you are expecting
45+
value: "Describe the results you expected"
46+
validations:
47+
required: true
48+
49+
- type: input
50+
id: substrate_connect_version
51+
attributes:
52+
label: Substrate-Connect version
53+
description: Which Substrate-Connect version are you using ?
54+
validations:
55+
required: true
56+
57+
- type: dropdown
58+
id: provider
59+
attributes:
60+
label: Provider
61+
description: Which browser are you using ?
62+
options:
63+
- Firefox
64+
- Safari
65+
- Chrome
66+
- Brave
67+
- Opera
68+
- Edge
69+
- Other (Specify below)
70+
validations:
71+
required: true
72+
73+
- type: textarea
74+
id: browser_version
75+
attributes:
76+
label: Browser version
77+
description: Which Browser version are you using ?
78+
value: |
79+
## If browser selected is "other" add name of browser
80+
validations:
81+
required: true
82+
83+
- type: textarea
84+
id: additional_environment
85+
attributes:
86+
label: Additional environment details
87+
description: Please describe any additional environment details like OS, OS version etc.
88+
value: "Additional environment details"
89+
90+
- type: textarea
91+
id: additional_info
92+
attributes:
93+
label: Additional information
94+
description: Please explain the additional information you deem important
95+
value: "Additional information like issue happens only occasionally or issue happens with a particular architecture or on a particular setting"
96+
validations:
97+
required: false
98+
99+
- type: textarea
100+
id: screenshots
101+
attributes:
102+
label: Screenshots
103+
description: Provide us with screenshots if needed to have a better understanding of the issue
104+
validations:
105+
required: false
+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: Feature request
2+
description: File a feature request
3+
labels: ["triage-needed"]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for taking the time to fill out this feature report!
9+
Please make sure to describe your feature and the problem it would solve.
10+
11+
12+
- type: textarea
13+
id: description
14+
attributes:
15+
label: Is your feature request related to a problem? Please describe.
16+
description: A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
17+
value: "Describe the feature"
18+
validations:
19+
required: true
20+
21+
- type: textarea
22+
id: solution
23+
attributes:
24+
label: Describe the solution you'd like
25+
description: A clear and concise description of what you want to happen..
26+
validations:
27+
required: true
28+
29+
- type: textarea
30+
id: alt_solution
31+
attributes:
32+
label: Describe alternatives you've considered
33+
description: A clear and concise description of any alternative solutions or features you've considered.
34+
validations:
35+
required: false
36+
37+
- type: textarea
38+
id: additional_context
39+
attributes:
40+
label: Additional context
41+
description: Add any other context or screenshots about the feature request here.
42+
validations:
43+
required: false

0 commit comments

Comments
 (0)