Skip to content

Commit

Permalink
Merge pull request #285 from Mause/feature/bug-report-template
Browse files Browse the repository at this point in the history
feature/bug report template
  • Loading branch information
Mause authored Jun 22, 2022
2 parents 47fbada + b336122 commit 7928f3a
Showing 1 changed file with 82 additions and 0 deletions.
82 changes: 82 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
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

0 comments on commit 7928f3a

Please sign in to comment.