Skip to content

Create issue templates #62

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

Merged
merged 2 commits into from
Jun 22, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
22 changes: 22 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
name: Bug report
about: Create a report to help us improve
title: "[BUG]"
labels: bug
assignees: ''

---

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

**Code Sample**
```
// give a code sample showing how to reproduce this.
```

**Expected behavior**
A clear and concise description of what you expected to happen.

**Additional context**
Add any other context about the problem here.
23 changes: 23 additions & 0 deletions .github/ISSUE_TEMPLATE/missing-event.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
name: Missing Event
about: Request Implementation of a missing event
title: ''
labels: missing event
assignees: Pjiesco

---

**Event Name**
Please give the name of the event.

**Description**
If possible a discription of the event,

**Event Fields**
| Name | Type |
| ------------- | :-------------: |
| `exampleField` | String |
| `exampleField2` | int |

**Additional Information**
If you have any additional information like a link to any documentation or event handler of this event please provide this here.
29 changes: 29 additions & 0 deletions .github/ISSUE_TEMPLATE/missing-request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
name: Missing Request
about: Request implementation of a missing request
title: ''
labels: missing request
assignees: Pjiesco

---

**Request Name**
Please give the name of the request.

**Description**
If possible a discription of the request,

**Request Parameters**
| Name | Type | Required |
| ------------- | :-------------: | :-------------: |
| `exampleParameter` | String | yes |
| `exampleParameter2` | int | no |

**Response Parameters**
| Name | Type |
| ------------- | :-------------: |
| `exampleResponse` | String |
| `exampleResponse2` | int |

**Additional Information**
If you have any additional information like a link to any documentation or request handler of this request please provide this here.