-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #285 from Mause/feature/bug-report-template
feature/bug report template
- Loading branch information
Showing
1 changed file
with
82 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,82 @@ | ||
name: Bug Report | ||
description: File a bug report | ||
title: "[Bug]: " | ||
labels: ["bug", "triage"] | ||
assignees: | ||
- Mause | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
- type: textarea | ||
id: what-happened | ||
attributes: | ||
label: What happened? | ||
description: Also tell us, what did you expect to happen? | ||
placeholder: Tell us what you see! | ||
value: "A bug happened!" | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: duckdb_engine_version | ||
attributes: | ||
label: DuckDB Engine Version | ||
description: What version of our software are you running? | ||
options: | ||
- 0.1.11 | ||
- 0.1.10 | ||
- 0.1.9 | ||
- 0.1.8 | ||
- 0.1.7 | ||
- 0.1.6 | ||
- 0.1.5 | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: duckdb_version | ||
attributes: | ||
label: DuckDB Version | ||
description: What version of duckdb are you running? | ||
options: | ||
- "v0.4.0" | ||
- "v0.3.4" | ||
- "v0.3.3" | ||
- "v0.3.2" | ||
- "v0.3.1" | ||
- "v0.3.0" | ||
- "v0.2.9" | ||
- "v0.2.8" | ||
- "v0.2.7" | ||
- "v0.2.6" | ||
- "v0.2.5" | ||
- "v0.2.4" | ||
- "v0.2.3" | ||
- "v0.2.2" | ||
- "v0.2.1" | ||
- "v0.2.0" | ||
- "v0.1.9" | ||
- "v0.1.8" | ||
- "v0.1.7" | ||
- "v0.1.6" | ||
- "v0.1.5" | ||
- "v0.1.3" | ||
- "v0.1.2" | ||
- "v0.1.1" | ||
- "v0.1.0" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Relevant log output | ||
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. | ||
render: shell | ||
- type: checkboxes | ||
id: terms | ||
attributes: | ||
label: Code of Conduct | ||
description: By submitting this issue, you agree to follow our Code of Conduct | ||
options: | ||
- label: I agree to follow this project's Code of Conduct | ||
required: true |