Skip to content
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

github: add issue templates #27

Merged
merged 1 commit into from
Mar 2, 2022
Merged
Show file tree
Hide file tree
Changes from all 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
github: add issue templates
  • Loading branch information
james-d-elliott committed Mar 2, 2022
commit 2cd9f77a3bc97d77f37a91b4d71afde50afaba7d
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
...