Skip to content

Commit cae9d74

Browse files
authored
Update and rename Bug_report.md to Bug_report.yaml
1 parent ac0b92f commit cae9d74

File tree

2 files changed

+90
-57
lines changed

2 files changed

+90
-57
lines changed

.github/ISSUE_TEMPLATE/Bug_report.md

Lines changed: 0 additions & 57 deletions
This file was deleted.
Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
name: Bug report
2+
description: File a bug report
3+
title: "[BUG] <title>"
4+
labels: ["bug", "triage"]
5+
body:
6+
- type: input
7+
id: summary
8+
attributes:
9+
label: Summary
10+
description: Write a summary of your issue
11+
placeholder: ex. Unable to import `tabula`
12+
validations:
13+
required: true
14+
- type: checkboxes
15+
id: checklist
16+
attributes:
17+
label: Did you read the FAQ?
18+
description: Please read the [FAQ](https://tabula-py.readthedocs.io/en/latest/faq.html)
19+
options:
20+
- label: I have read the FAQ
21+
validations:
22+
required: true
23+
- type: checkboxes
24+
id: checklist
25+
attributes:
26+
label: Did you search GitHub Discussions?
27+
description: Please search the [discussions](https://github.com/chezou/tabula-py/discussions)
28+
options:
29+
- label: I have searched the discussions
30+
validations:
31+
required: true
32+
- type: textarea
33+
id: pdf_url
34+
attributes:
35+
label: "(Optional) PDF URL"
36+
description: Provide your PDF URL. It's optional, but really helpful.
37+
validations:
38+
required: false
39+
- type: textarea
40+
id: environment
41+
attributes:
42+
label: About your environment
43+
description: |
44+
Paste the output of `import tabula; tabula.environment_info()` on Python REPL.
45+
Or, paste the results of `python --version` and `java -version`, and write down your OS version
46+
placeholder: |
47+
put here if you executed `tabula.environment_info()` or write
48+
- Python version: result of `python --version`
49+
- Java version: result of `java -version`
50+
- OS version: Ubuntu 22.04
51+
render: markdown
52+
validations:
53+
required: true
54+
- type: textarea
55+
id: reproducible_info
56+
attributes:
57+
label: What did you do when you faced the problem?
58+
description: Provide your information to reproduce the issue
59+
validations:
60+
required: true
61+
- type: textarea
62+
id: code
63+
attributes:
64+
label: Code
65+
description: Paste your core code which minimum reproducible for the issue
66+
placeholder: Paste your output in text
67+
validations:
68+
required: true
69+
- type: textarea
70+
id: expected_behavior
71+
attributes:
72+
label: Expected behavior
73+
description: Write your expected results/outputs
74+
validations:
75+
required: true
76+
- type: textarea
77+
id: actuabl_behavior
78+
attributes:
79+
label: Actual behavior
80+
description: Put the actual results/outputs
81+
placeholder: Paste your output in text
82+
validations:
83+
required: true
84+
- type: textarea
85+
id: related_issues
86+
attributes:
87+
label: Related issues
88+
description: "If there are any related issue, please put them"
89+
validations:
90+
required: false

0 commit comments

Comments
 (0)