Skip to content

Commit

Permalink
chore: create github issue templates
Browse files Browse the repository at this point in the history
  • Loading branch information
ShlomoCode committed May 27, 2024
1 parent 3dbbff5 commit 5b15a91
Show file tree
Hide file tree
Showing 4 changed files with 83 additions and 0 deletions.
52 changes: 52 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Bug report
description: Create a report to help us improve
labels:
- bug
body:
- type: textarea
id: bug_description
attributes:
label: Describe the bug
description: A clear and concise description of what the bug is.
validations:
required: true
- type: textarea
id: version_information
attributes:
label: Version Information
description: |
Please provide the version of the package you are using.
Use the following command to get this:
```bash
node -v && npm list yemot-router2 express
```
render:
rows: 4
validations:
required: true
- type: textarea
id: reproducible_example
attributes:
label: Reproducible Example
description: A short, isolated, but runnable code example is required. **Otherwise, the issue will be closed**.
value: |
```
// Add your code here...
```
render:
rows: 30
validations:
required: true
- type: textarea
id: additional_context
attributes:
label: Additional Context
description: Provide any other context about the problem, like error messages, stack traces, or screenshots. you can also drop a file here.
validations:
required: false
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
blank_issues_enabled: false
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: enhancement
assignees: ''

---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.
10 changes: 10 additions & 0 deletions .github/ISSUE_TEMPLATE/question.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
name: Question
about: Ask a question about library usage
title: ''
labels: question
assignees: ''

---


0 comments on commit 5b15a91

Please sign in to comment.