Skip to content

Commit bf18b65

Browse files
authored
Merge pull request #737 from Stremio/feat/create-issue-templates
feat: create issue templates for bugs and features
2 parents d0b9215 + 418546e commit bf18b65

File tree

2 files changed

+124
-0
lines changed

2 files changed

+124
-0
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

+82
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
name: Bug report
2+
description: Report a bug in Stremio-Web
3+
title: "[Bug]: "
4+
labels:
5+
- bug
6+
body:
7+
- type: dropdown
8+
id: stremio_web_version
9+
attributes:
10+
label: "Stremio-Web Version"
11+
description: "Select the version of the Stremio-Web app you are using"
12+
options:
13+
- /development branch
14+
- web.stremio.com
15+
- web.strem.io
16+
validations:
17+
required: true
18+
19+
- type: dropdown
20+
id: browser
21+
attributes:
22+
label: "Browser"
23+
description: "Which browser are you using?"
24+
options:
25+
- Chrome
26+
- Brave
27+
- Firefox
28+
- Arc
29+
- Opera
30+
- Safari
31+
- Edge
32+
validations:
33+
required: true
34+
35+
- type: dropdown
36+
id: platform
37+
attributes:
38+
label: "Platform / Device type"
39+
description: "Which platform / device type are you using?"
40+
options:
41+
- Windows
42+
- Linux
43+
- MacOS
44+
- Android Web
45+
- Android PWA
46+
- iOS Web
47+
- iOS PWA
48+
validations:
49+
required: true
50+
51+
- type: textarea
52+
id: what_happened
53+
attributes:
54+
label: "What Happened?"
55+
description: "Describe the issue you encountered"
56+
placeholder: "Explain what you were doing, what you expected to happen, and what actually happened."
57+
validations:
58+
required: true
59+
60+
- type: textarea
61+
id: logs
62+
attributes:
63+
label: "Logs"
64+
description: "Paste any relevant logs here (optional)"
65+
render: shell
66+
67+
- type: textarea
68+
id: notes
69+
attributes:
70+
label: "Notes"
71+
description: "Any additional information (optional)"
72+
73+
- type: checkboxes
74+
id: code_of_conduct
75+
attributes:
76+
label: "Code of Conduct"
77+
description: "Please confirm you have read and agree to the Code of Conduct"
78+
options:
79+
- label: "I agree"
80+
validations:
81+
required: true
82+
+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: Feature request
2+
description: Suggest a new feature or enhancement for Stremio-Web
3+
title: "[Feature]: "
4+
labels:
5+
- enhancement
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: "Thank you for your interest in improving Stremio-Web! Please provide as much detail as possible."
10+
11+
- type: textarea
12+
id: feature_description
13+
attributes:
14+
label: "Feature Description"
15+
description: "Describe the feature you would like to see implemented. What problem does it solve, or what functionality does it add?"
16+
placeholder: "Describe your idea in detail..."
17+
validations:
18+
required: true
19+
20+
- type: textarea
21+
id: proposed_solution
22+
attributes:
23+
label: "Proposed Solution"
24+
description: "If you have any thoughts on how this could be implemented or approached, share them here."
25+
placeholder: "Suggest possible approaches or solutions..."
26+
27+
- type: textarea
28+
id: additional_context
29+
attributes:
30+
label: "Additional Context or Screenshots"
31+
description: "Add any other context, screenshots, or references that may help us understand the request."
32+
placeholder: "Any extra info that might help..."
33+
34+
- type: checkboxes
35+
id: code_of_conduct
36+
attributes:
37+
label: "Code of Conduct"
38+
description: "Please confirm you have read and agree to the Code of Conduct"
39+
options:
40+
- label: "I agree"
41+
validations:
42+
required: true

0 commit comments

Comments
 (0)