chore: added issue templates
This commit is contained in:
parent
562385729b
commit
7d87a617cc
3 changed files with 125 additions and 0 deletions
47
.github/ISSUE_TEMPLATE/bug.yaml
vendored
Normal file
47
.github/ISSUE_TEMPLATE/bug.yaml
vendored
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
name: Bug Report
|
||||
description: File a bug report
|
||||
title: "[Bug]: "
|
||||
labels: ["bug", "awaiting-approval"]
|
||||
assignees: []
|
||||
body:
|
||||
- type: checkboxes
|
||||
attributes:
|
||||
label: Checked Existing
|
||||
description: Ensure you have checked the existing issues, both open and closed, for duplicate issues.
|
||||
options:
|
||||
- label: I have checked the repository for duplicate issues.
|
||||
required: true
|
||||
- type: markdown
|
||||
attributes:
|
||||
value: "We're sorry to hear you had an issue. Please fill out this form to the best of your ability to help us get to the bottom of things."
|
||||
- type: textarea
|
||||
id: what-happened
|
||||
attributes:
|
||||
label: What happened?
|
||||
description: Describe the bug in as much detail as possible.
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: expected-result
|
||||
attributes:
|
||||
label: What did you expect to happen?
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: reproduce
|
||||
attributes:
|
||||
label: Steps to reproduce?
|
||||
description: What steps have you taken to see the bug? (OPTIONAL)
|
||||
placeholder: 1. ...
|
||||
validations:
|
||||
required: false
|
||||
- type: textarea
|
||||
id: other-info
|
||||
attributes:
|
||||
label: Other relevant information. (OPTIONAL)
|
||||
description: |
|
||||
Feel free to give us any more information that doesn't fit the above text boxes.
|
||||
|
||||
Tip: You can attach files by clicking this textbox and dragging in files.
|
||||
validations:
|
||||
required: false
|
||||
32
.github/ISSUE_TEMPLATE/feature.yaml
vendored
Normal file
32
.github/ISSUE_TEMPLATE/feature.yaml
vendored
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
name: Feature Request
|
||||
description: Suggest a new feature
|
||||
title: "[Feature]: "
|
||||
labels: ["feature", "awaiting-approval"]
|
||||
assignees: []
|
||||
body:
|
||||
- type: checkboxes
|
||||
attributes:
|
||||
label: Checked Existing
|
||||
description: Ensure you have checked the existing issues, both open and closed, for duplicate issues.
|
||||
options:
|
||||
- label: I have checked the repository for duplicate issues.
|
||||
required: true
|
||||
- type: textarea
|
||||
id: what-feature
|
||||
attributes:
|
||||
label: What feature do you want to see added?
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: why-feature
|
||||
attributes:
|
||||
label: Why do you want to have this feature?
|
||||
placeholder: A new button!
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: other-details
|
||||
attributes:
|
||||
label: Any other details to share? (OPTIONAL)
|
||||
validations:
|
||||
required: false
|
||||
46
.github/ISSUE_TEMPLATE/regression.yaml
vendored
Normal file
46
.github/ISSUE_TEMPLATE/regression.yaml
vendored
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
name: Regression
|
||||
description: Report a feature regression
|
||||
title: "[Regression]: "
|
||||
labels: ["regression", "awaiting-approval"]
|
||||
assignees: []
|
||||
body:
|
||||
- type: checkboxes
|
||||
attributes:
|
||||
label: Checked Existing
|
||||
description: Ensure you have checked the existing issues, both open and closed, for duplicate issues.
|
||||
options:
|
||||
- label: I have checked the repository for duplicate issues.
|
||||
required: true
|
||||
- type: markdown
|
||||
attributes:
|
||||
value: "We're sorry to hear something broke. Please fill out this form to the best of your ability to help us get to the bottom of things."
|
||||
- type: textarea
|
||||
id: what-happened
|
||||
attributes:
|
||||
label: What happened?
|
||||
description: Describe the regression in as much detail as possible.
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: expected-result
|
||||
attributes:
|
||||
label: What was the previous functionality?
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: when
|
||||
attributes:
|
||||
label: When did this occur?
|
||||
description: If known, please link to the commit or pull request which introduced this regression. (OPTIONAL)
|
||||
validations:
|
||||
required: false
|
||||
- type: textarea
|
||||
id: other-info
|
||||
attributes:
|
||||
label: Other relevant information. (OPTIONAL)
|
||||
description: |
|
||||
Feel free to give us any more information that doesn't fit the above text boxes.
|
||||
|
||||
Tip: You can attach files by clicking this textbox and dragging in files.
|
||||
validations:
|
||||
required: false
|
||||
Loading…
Reference in a new issue