Skip to content

Commit

Permalink
github: add issue templates (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
james-d-elliott committed Mar 2, 2022
1 parent 2d8306d commit 0bf7701
Show file tree
Hide file tree
Showing 2 changed files with 86 additions and 0 deletions.
56 changes: 56 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
---
name: Bug Report
description: Report a potential bug
labels:
- type/potential-bug
- status/needs-triage
- priority/normal
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report. Please try to give as much information as possible for
us to be able to reproduce the issue and provide a quick fix.
- type: dropdown
id: version
attributes:
label: Version
description: What version of the library are you using?
options:
- 0.2.1
- 0.2.0
- 0.1.3
- 0.1.2
- 0.1.1
- 0.1.0
validations:
required: true
- type: textarea
id: description
attributes:
label: Description
description: Describe the bug
validations:
required: true
- type: textarea
id: reproduction
attributes:
label: Reproduction
description: Describe how we can reproduce this issue
validations:
required: true
- type: textarea
id: expectations
attributes:
label: Expectations
description: Describe the desired or expected results
validations:
required: false
- type: textarea
id: documentation
attributes:
label: Documentation
description: Provide any relevant specification or other documentaiton if applicable
validations:
required: false
...
30 changes: 30 additions & 0 deletions .github/ISSUE_TEMPLATE/feature-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
name: Feature Request
description: Request a feature
labels:
- type/feature-request
- status/needs-triage
- priority/normal
body:
- type: textarea
id: description
attributes:
label: Description
description: Provide a description of the feature
validations:
required: true
- type: textarea
id: use-case
attributes:
label: Use Case
description: Provide a use case if applicable
validations:
required: false
- type: textarea
id: documentation
attributes:
label: Documentation
description: Provide any relevant specification or other documentaiton if applicable
validations:
required: false
...

0 comments on commit 0bf7701

Please sign in to comment.