-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbug_report.yml
More file actions
91 lines (89 loc) · 2.54 KB
/
bug_report.yml
File metadata and controls
91 lines (89 loc) · 2.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
name: Bug Report
description: Found a Bug about JavaBotBlockAPI? Use this template to report it!
labels: "Type: Bug (Unconfirmed)"
issue_body: false
body:
- type: markdown
attributes:
value: |-
**BEFORE YOU OPEN THIS BUG REPORT!**
In order to help you as good as possible with your issue will we ask you to fill out all required fields (Marked with a `*`) and to provide as much information as possible.
- type: checkboxes
attributes:
label: Confirmation
description: Please make sure to have followed these checks.
options:
- label: My issue isn't already found on the Issue tracker.
required: true
- label: My issue is about **JavaBotBlockAPI** and not any other library or BotBlock.org itself.
required: true
- label: I use the latest available version.
required: true
- type: dropdown
attributes:
label: "Modules"
description: |-
What modules are you currently using?
Currently available:
- `Core`
- `Javacord`
- `JDA`
- `Request`
multiple: true
options:
- "Core"
- "Javacord"
- "JDA"
- "Request"
validations:
required: true
- type: textarea
attributes:
label: "What happens?"
description: "What bug are you encountering? Try to explain it as detailed as possible."
placeholder: "JavaBotBlockAPI does this when I do that..."
validations:
required: true
- type: textarea
attributes:
label: "Expected Behaviour"
description: "What behaviour did you expect from JavaBotBlockAPI?"
placeholder: "JavaBotBlockAPI should actually do..."
validations:
required: true
- type: textarea
attributes:
label: "How to Reproduce"
description: |-
List the steps on how to reproduce this Bug.
Make sure to also show any code-examples in `Code` to reproduce this bug.
placeholder: |-
1. Do this
2. ...
3. Profit!
validations:
required: true
- type: textarea
attributes:
label: "Code"
description: |-
Put your code here.
This code needs to be able to reproduce the bug consistently!
placeholder: |-
```java
public void error(){
throw new Exception("ERROR");
}
```
render: "java"
validations:
required: true
- type: input
attributes:
label: "Errors"
description: |-
Use a hastebin or pastebin site to share errors, stacktraces and similar.
We recommend to use https://paste.gg
placeholder: "https://paste.gg/p/anonymous/..."
validations:
required: true