forked from alibaba/druid
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert ISSUE_TEMPLATE to YAML format
- Loading branch information
Showing
1 changed file
with
83 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
name: Bug report | ||
description: Create a report to help us improve | ||
title: "[BUG] " | ||
labels: ["bug", "triage"] | ||
assignees: [] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
- type: input | ||
id: dbtype | ||
attributes: | ||
label: Database Type | ||
description: What database are you using? | ||
placeholder: e.g., MySQL, Oracle... | ||
validations: | ||
required: true | ||
- type: input | ||
id: dbversion | ||
attributes: | ||
label: Database Version | ||
description: What version of the database are you using? | ||
placeholder: e.g., MySQL 5.7, Oracle 12c... | ||
validations: | ||
required: true | ||
- type: input | ||
id: druid-version | ||
attributes: | ||
label: Druid Version | ||
description: What version of Druid are you using? | ||
placeholder: e.g., 1.2.22 | ||
validations: | ||
required: true | ||
- type: input | ||
id: jdk-version | ||
attributes: | ||
label: JDK Version | ||
description: What version of JDK are you using? | ||
placeholder: e.g., OpenJDK 11 | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: error-sql | ||
attributes: | ||
label: Error SQL | ||
description: Please provide the SQL that caused the error. | ||
placeholder: SELECT * FROM your_table | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: testcase-code | ||
attributes: | ||
label: Testcase Code | ||
description: Please provide the testcase code that reproduces the issue. | ||
placeholder: | | ||
```java | ||
// Your testcase code here | ||
``` | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: stacktrace-info | ||
attributes: | ||
label: Stacktrace Info | ||
description: Please provide the stacktrace information if applicable. | ||
placeholder: | | ||
```java | ||
// Your stacktrace here | ||
``` | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: error-info | ||
attributes: | ||
label: Error Info | ||
description: Please provide any additional error information or logs. | ||
placeholder: | | ||
```log | ||
// Your error info or logs here | ||
``` | ||
validations: | ||
required: false |