|
1 | | -name: Report Bug |
2 | | -description: Create an Issue to report a bug with/about the library. |
3 | | -title: "[BUG] " |
4 | | -labels: ["bug"] |
5 | | -assignees: |
6 | | - - DeltaXWizard |
7 | | - - EdVraz |
8 | | - - Astrea49 |
9 | | - - Toricane |
10 | | - - Catalyst4222 |
11 | | - - Damego |
| 1 | +name: Bug Report |
| 2 | +description: Report broken or incorrect behavior. |
| 3 | +labels: ["Bug::Library"] |
| 4 | +title: "[BUG] Your Title Here" |
| 5 | + |
12 | 6 | body: |
13 | 7 | - type: markdown |
14 | 8 | attributes: |
15 | | - value: | |
| 9 | + value: > |
16 | 10 | Thank you for taking the time to fill out this bug report! |
17 | 11 | We rely on users to tell us things that we might not find on our own, |
18 | 12 | and your help is greatly valued by the team and others contributing. |
19 | | - - type: textarea |
20 | | - id: process |
| 13 | + If you want real-time support, consider joining our [Discord](https://discord.gg/interactions) instead. |
| 14 | +
|
| 15 | + - type: input |
21 | 16 | attributes: |
22 | | - label: Describe the bug. |
23 | | - description: Please give us an in-depth description of the bug you are having. |
24 | | - placeholder: When trying to use feature X, I was unable to make task Y work. |
| 17 | + label: Library Version |
| 18 | + description: Which version of the library you are currently running. |
25 | 19 | validations: |
26 | 20 | required: true |
| 21 | + |
27 | 22 | - type: textarea |
28 | | - id: steps |
29 | 23 | attributes: |
30 | | - label: List the steps. |
31 | | - description: Please give us a step-by-step process of how you were able to produce this. |
32 | | - placeholder: | |
33 | | - 1. Import the module in Python. |
34 | | - 2. Create a client variable for the library. |
35 | | - 3. Try creating a slash command. |
36 | | - 4. See the traceback error given in the terminal or logger file. |
| 24 | + label: Describe the Bug |
| 25 | + description: A simple summary of your bug report |
37 | 26 | validations: |
38 | 27 | required: true |
| 28 | + |
39 | 29 | - type: textarea |
40 | | - id: expectation |
41 | 30 | attributes: |
42 | | - label: What you expected. |
43 | | - description: Please tell us what you expect for this to do when it ran. |
44 | | - placeholder: When I create a slash command, the command should be created and functional. |
| 31 | + label: Steps to Reproduce |
| 32 | + description: Please give us a step-by-step process of how you were able to produce this. |
45 | 33 | validations: |
46 | 34 | required: true |
| 35 | + |
47 | 36 | - type: textarea |
48 | | - id: result |
49 | 37 | attributes: |
50 | | - label: What you saw. |
51 | | - description: Please tell us what you found when you actually ran this. |
52 | | - placeholder: Instead, I received this traceback error given from my Python terminal. |
53 | | - value: | |
54 | | - Instead, I received this traceback error given from my Python terminal: |
55 | | - ``` |
56 | | - Traceback (most recent call last): |
57 | | - File "A:\Amogus\Python\interactions-bot\main.py", line 6 |
58 | | - raise SussyBaka("your code doesn't work, silly!") |
59 | | - ^ |
60 | | -
|
61 | | - SussyBaka: your code doesn't work, silly! |
62 | | - ``` |
| 38 | + label: Expected Results |
| 39 | + description: A clear and concise description of what you expected to happen. |
63 | 40 | validations: |
64 | 41 | required: true |
65 | | - - type: dropdown |
66 | | - id: version |
| 42 | + |
| 43 | + - type: textarea |
67 | 44 | attributes: |
68 | | - label: What version of the library did you use? |
69 | | - multiple: false |
70 | | - options: |
71 | | - - release |
72 | | - - stable |
73 | | - - unstable |
74 | | - validations: |
75 | | - required: true |
76 | | - - type: input |
77 | | - id: version-specific |
| 45 | + label: Minimal Reproducible Code |
| 46 | + description: A short snippet of code that showcases the bug. |
| 47 | + render: python |
| 48 | + |
| 49 | + - type: textarea |
78 | 50 | attributes: |
79 | | - label: Version specification |
80 | | - description: "If you're using a pre-release or release candidate, please specify which one." |
| 51 | + label: Traceback |
| 52 | + description: Was there a traceback? If so, please provide it. |
81 | 53 | validations: |
82 | 54 | required: false |
| 55 | + |
83 | 56 | - type: checkboxes |
84 | | - id: accept |
85 | 57 | attributes: |
86 | | - label: Code of Conduct |
87 | | - description: By submitting this Issue, you agree to follow our [contribution requirements.](https://github.com/interactions-py/library/blob/unstable/CONTRIBUTING.rst) |
| 58 | + label: Checklist |
| 59 | + description: Let's make sure you've properly done due diligence when reporting this issue! |
88 | 60 | options: |
89 | | - - label: I agree to follow the contribution requirements. |
| 61 | + - label: I have searched the open issues for duplicates. |
90 | 62 | required: true |
| 63 | + - label: I have shown the entire traceback, if possible. |
| 64 | + required: true |
| 65 | + - label: I have removed my token from display, if visible. |
| 66 | + required: true |
| 67 | + - label: I have attempted to debug this myself, and I believe this issue is with the library |
| 68 | + required: true |
| 69 | + |
| 70 | + - type: textarea |
| 71 | + attributes: |
| 72 | + label: Additional Information |
| 73 | + description: Any other information about the problem. |
0 commit comments