Skip to content

Commit

Permalink
Update issue templates
Browse files Browse the repository at this point in the history
  • Loading branch information
antonkesy authored Dec 18, 2023
1 parent cee23f5 commit 28b9d74
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report--incorrect-parsing.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
name: 'Bug report: Incorrect parsing'
about: Report a incorrect or not working protobuf parser
title: "[BUG]: "
labels: bug
assignees: ''

---

Thank you for reporting an issue! **Please fill-out following sections**:

**Describe the bug**
A clear and concise description of what the bug is.

**Protobuf File/Text**
Please replace the content of the code block with the actual value.
```
import "foo.proto";
message SearchRequest {
int32 page_number = 2;
double results_per_page = 3;
}
```

**Expected behavior**
Please replace the content of the code block with the actual value.
```
Protobuf {syntax = Nothing, package = Nothing, imports = ["foo.proto"], options = [], enums = [], messages = [Message "SearchRequest" [ImplicitMessageField (Scalar (IntType Int32)) "page_number" 2 [],ImplicitMessageField (Scalar (FloatType D
ouble)) "results_per_page" 3 []]], services = []}
```

0 comments on commit 28b9d74

Please sign in to comment.