Skip to content

Commit

Permalink
Convert ISSUE_TEMPLATE to YAML format
Browse files Browse the repository at this point in the history
  • Loading branch information
lizongbo committed Jun 24, 2024
1 parent c190115 commit 3c0f503
Showing 1 changed file with 83 additions and 0 deletions.
83 changes: 83 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
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

0 comments on commit 3c0f503

Please sign in to comment.