Skip to content

Commit d11a395

Browse files
committed
docs: add issue templates
1 parent 337885b commit d11a395

3 files changed

Lines changed: 95 additions & 19 deletions

File tree

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
name: Bug Report
2+
description: File a bug report
3+
title: "[Bug]: "
4+
labels: []
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to fill out this bug report!
10+
11+
- type: input
12+
id: version
13+
attributes:
14+
label: Version
15+
description: Which version did the problem appear on?
16+
placeholder: v0.0.1
17+
validations:
18+
required: true
19+
20+
- type: dropdown
21+
id: sql-type
22+
attributes:
23+
label: Which SQL?
24+
description: Which kind of SQL did the problem appear on?
25+
options:
26+
- MySQL
27+
- Flink
28+
- Spark
29+
- Hive
30+
- Postgre
31+
- Trino
32+
- Impala
33+
- Any Others
34+
validations:
35+
required: true
36+
37+
- type: textarea
38+
id: sql-content
39+
attributes:
40+
label: SQL content
41+
placeholder: SELECT * FROM table;
42+
description: Please provide the minimal SQL text that reproduces the problem.
43+
render: sql
44+
45+
- type: textarea
46+
id: js-code
47+
attributes:
48+
label: JavaScript/TypeScript code
49+
description: Please provide the minimal demo code that reproduces the problem.
50+
render: typescript
51+
52+
- type: textarea
53+
id: what-happened
54+
attributes:
55+
label: What happened?
56+
description: Also tell us, what did you expect to happen?
57+
placeholder: Tell us what you see!
58+
validations:
59+
required: true
60+
61+
- type: textarea
62+
id: logs
63+
attributes:
64+
label: Relevant log output
65+
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
66+
render: shell
67+
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Feature Request
2+
description: Suggest an idea for this project
3+
title: '[Feature Request]: '
4+
labels: []
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
To help us efficiently reviewing your feature request, please fill out this form.
10+
11+
- type: dropdown
12+
id: sql-type
13+
attributes:
14+
label: Topic
15+
options:
16+
- Support new SQL
17+
- Support new features on parser
18+
- Enhance existing features
19+
- Documents
20+
- Any Others
21+
validations:
22+
required: true
23+
24+
- type: textarea
25+
id: description
26+
attributes:
27+
label: Description
28+
description: Please describe your feature request.

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 19 deletions
This file was deleted.

0 commit comments

Comments
 (0)