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

Add search terms field to bug report template #2067

Merged
merged 7 commits into from
Feb 11, 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
11 changes: 9 additions & 2 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,15 @@ body:
- type: markdown # Form Header
attributes:
value: >-
This issue form is for reporting bugs only! Please help us reduce duplicate issues by searching through both
open and closed issues though. It only takes 5 minutes and helps us with housekeeping. :)
This issue form is for reporting bugs only!
- type: input # Search Terms
validations:
required: true
attributes:
label: 🔎 Search Terms
description: >-
What search terms did you use when trying to find an existing bug report, looking in both open and closed issues?
List them here so people in the future can find this one more easily.
- type: textarea # Problem Definition
validations:
required: true
Expand Down
13 changes: 10 additions & 3 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,20 @@ body:
- type: markdown # Form Header
attributes:
value: |
This issue form is for requesting features only! Please help us reduce duplicate issues by searching through both
open and closed issues though. It only takes 5 minutes and helps us with housekeeping. :)
This issue form is for requesting features only!
- type: input # Search Terms
validations:
required: true
attributes:
label: 🔎 Search Terms
description: >-
What search terms did you use when trying to find an existing feature request, looking in both open and closed issues?
List them here so people in the future can find this one more easily.
- type: textarea # Feature Definition
validations:
required: true
attributes:
label: The problem
label: The vision
description: >-
Please provide a clear and concise description of the feature you would like to see implemented.
- type: markdown # Feature Details Section
Expand Down