Skip to content

Add proper issue template for bug reports #99

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions .github/ISSUE_TEMPLATE/1-bug.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Bug report
description: Message parser doesn't parse right
labels: ["bug"]
body:
- type: markdown
attributes:
value: Thanks for helping to improve DeltaChat! Please fill information below to make it easier to kill this bug!
- type: input
id: version
attributes:
label: Message parser version or commit
placeholder: v0.0.0
validations:
required: true
- type: textarea
id: description
attributes:
label: Explaination
description: Explain about the bug. Optionally explain why do you think it's a bug. Like is it out of sync with some spec?
validations:
required: true
- type: markdown
attributes:
value: Each testcase should ideally be a text sample as input, the expected and the actual AST. You can take a look at already existing tests.
- type: textarea
id: testcase_0
attributes:
label: Testcase 0
description: Optionally provide a testcase
- type: textarea
id: testcase_1
attributes:
label: Testcase 1
description: Optionally provide a testcase
- type: textarea
id: testcase_2
attributes:
label: Testcase 2
description: Optionally provide a testcase
5 changes: 5 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
blank_issues_enabled: true
contact_links:
- name: DeltaChat
url: mailto:[email protected]
about: Report security bugs to Simon
Loading