Skip to content

Commit 69d4b81

Browse files
authored
Create bug_report_template.yml
1 parent 0a75584 commit 69d4b81

File tree

1 file changed

+65
-0
lines changed

1 file changed

+65
-0
lines changed
Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
name: "\U0001F41E Bug report"
2+
description: Report a bug on Gradio
3+
labels: [ "bug" ]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for taking the time to fill out this bug report!
9+
- type: textarea
10+
id: bug-description
11+
attributes:
12+
label: Describe the bug
13+
description: A clear and concise description of what the bug is. If you intend to submit a PR for this issue, tell us in the description. Thanks!
14+
placeholder: Bug description
15+
validations:
16+
required: true
17+
- type: checkboxes
18+
attributes:
19+
label: Is there an existing issue for this?
20+
description: Please search to see if an issue already exists for the issue you encountered.
21+
options:
22+
- label: I have searched the existing issues
23+
required: true
24+
- type: textarea
25+
id: reproduction
26+
attributes:
27+
label: Reproduction
28+
description: Please provide a link to a repo or REPL that can reproduce the problem you ran into. Or provide the Python code below that can be run to reproduce the issue.
29+
placeholder: Reproduction
30+
validations:
31+
required: true
32+
- type: textarea
33+
id: screenshot
34+
attributes:
35+
label: Screenshot
36+
description: "If possible, please include screenshot(s) so that we can understand what the issue is."
37+
- type: textarea
38+
id: logs
39+
attributes:
40+
label: Logs
41+
description: "Please include the full stacktrace of the errors you get from Python or Javascript. If you are running in a colab notebooks, you can get the logs with by setting `debug=True`, i.e: `gradio.Interface.launch(debug=True)`"
42+
render: shell
43+
validations:
44+
required: true
45+
- type: textarea
46+
id: system-info
47+
attributes:
48+
label: System Info
49+
description: Please share your system info with us, you can get the Gradio version with `gradio.__version__`
50+
render: shell
51+
placeholder: Gradio version, Operating System, Browser
52+
validations:
53+
required: true
54+
- type: dropdown
55+
id: severity
56+
attributes:
57+
label: Severity
58+
description: Select the severity of this issue
59+
options:
60+
- annoying
61+
- serious, but I can work around it
62+
- blocking upgrade to latest gradio version
63+
- blocking all usage of gradio
64+
validations:
65+
required: true

0 commit comments

Comments
 (0)