abhay2245 commited on
Commit
b8e9b5e
Β·
verified Β·
1 Parent(s): eeedfcc

Upload bug-reports.yml

Browse files
.github/ISSUE_TEMPLATE/bug-reports.yml ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: Bug Report
2
+ description: File a bug report
3
+ title: "[BUG REPORT]"
4
+ labels: [bug]
5
+ body:
6
+ - type: markdown
7
+ attributes:
8
+ value: |
9
+ Thanks for taking the time to fill out this bug report!
10
+ - type: input
11
+ id: contact
12
+ attributes:
13
+ label: Contact Details
14
+ description: Your telegram username or email ID.
15
+ placeholder: ex. @username or email@example.com
16
+ validations:
17
+ required: false
18
+ - type: textarea
19
+ id: what-happened
20
+ attributes:
21
+ label: What happened?
22
+ description: Also tell us, what did you expect to happen?
23
+ placeholder: Tell us what you see!
24
+ value: "A bug happened!"
25
+ validations:
26
+ required: true
27
+ - type: dropdown
28
+ id: version
29
+ attributes:
30
+ label: Version
31
+ description: What version of Ultroid are you running?
32
+ options:
33
+ - "0.5"
34
+ - "0.6"
35
+ - "0.7"
36
+ - "> 0.7"
37
+
38
+ validations:
39
+ required: true
40
+ - type: dropdown
41
+ id: hosted
42
+ attributes:
43
+ label: Hosted On
44
+ description: You are hosting Ultroid on Which Platform?
45
+ options:
46
+ - Vps
47
+ - Heroku
48
+ - Railway
49
+ - Qovery
50
+ - Termux
51
+ - Other
52
+ - Didn't Deployed Yet
53
+ validations:
54
+ required: true
55
+ - type: textarea
56
+ id: logs
57
+ attributes:
58
+ label: Relevant logs output
59
+ description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
60
+ render: shell
61
+ - type: checkboxes
62
+ id: terms
63
+ attributes:
64
+ label: Acknowledgement
65
+ description: By submitting this issue, you agree that you have read the [docs](https://ultroid.tech) and gone through the [deploy tutorial](https://www.youtube.com/watch?v=9wF7k9qA0Q4) at first.
66
+ options:
67
+ - label: I have followed all of the above steps.
68
+ required: true