Skip to content

Commit

Permalink
Update issue templates to issue forms (#17)
Browse files Browse the repository at this point in the history
Signed-off-by: Nishant Nayak <[email protected]>
  • Loading branch information
nishant-nayak authored Aug 25, 2023
1 parent 644ca7b commit 7d22deb
Show file tree
Hide file tree
Showing 4 changed files with 117 additions and 91 deletions.
61 changes: 0 additions & 61 deletions .github/ISSUE_TEMPLATE/BUG-REPORT.md

This file was deleted.

66 changes: 66 additions & 0 deletions .github/ISSUE_TEMPLATE/BUG-REPORT.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
name: 🐛 Bug Report
description: Create a new ticket for a bug/issue
title: "[BUG]: "
labels: ["bug"]
body:
- type: markdown
attributes:
value: |
Thank you for taking the time to report a bug! Please fill in the information below to help us reproduce the issue you are experiencing.
- type: checkboxes
id: checked-for-duplicate
attributes:
label: Is there an existing issue for this?
description: Please search [here](https://github.com/IEEE-NITK/corpus/issues) to see if an issue already exists for the bug you encountered. If so, please add a comment to the existing issue instead of creating a new one.
options:
- label: I have searched the existing issues
required: true
- type: textarea
id: description
attributes:
label: What happened?
description: |
Please include a brief description of the issue encountered.
**Tip:** You can attach images by clicking this area to highlight it and then dragging files in.
placeholder: Tell us what you see, and what you expected to see.
validations:
required: true
- type: textarea
id: steps-to-reproduce
attributes:
label: Steps To Reproduce
description: Please include detailed steps to reproduce the behavior.
placeholder: |
1. Go to ...
1. Click on ...
1. See error...
validations:
required: false
- type: dropdown
id: browsers
attributes:
label: What browsers are you seeing the problem on?
description: Please select all that apply.
multiple: true
options:
- Firefox
- Chrome
- Brave
- Opera/Opera GX
- Vivaldi
- Safari
- Microsoft Edge
- Other
validations:
required: true
- type: textarea
id: additional-info
attributes:
label: Anything else?
description: |
Links? References? Anything that will give us more context about the issue you are encountering!
Tip: You can attach images by clicking this area to highlight it and then dragging files in.
validations:
required: false
30 changes: 0 additions & 30 deletions .github/ISSUE_TEMPLATE/NEW-FEATURE.md

This file was deleted.

51 changes: 51 additions & 0 deletions .github/ISSUE_TEMPLATE/NEW-FEATURE.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: 💡 Feature Request
description: Create a new ticket for a new feature request
title: '[FEATURE]: '
labels: ["enhancement"]
body:
- type: markdown
attributes:
value: |
Thank you for taking the time to request a new feature! Please fill in the information below to help us understand your request.
- type: textarea
id: description
attributes:
label: What is the feature you would like to see?
description: Mention what the feature is, and why you would like to see it. Be as detailed as possible!
placeholder: Tell us what you would like to see.
validations:
required: true
- type: dropdown
id: severity
attributes:
label: How important do you think this feature is?
description: |
- **Low:** This feature is not very important, and can be implemented at any point.
- **Medium:** This feature is important, but not critical.
- **High:** This feature is critical, and should be implemented as soon as possible.
multiple: false
options:
- "Low"
- "Medium"
- "High"
- type: input
id: contact
attributes:
label: Contact Details (optional)
description: |
How can we get in touch with you if we need more info?
Please do not put your phone number here. This is a public forum, and we do not want your phone number to be misused.
placeholder: [email protected]
validations:
required: false
- type: textarea
id: additional-info
attributes:
label: Anything else?
description: |
Links? References? Anything that will help us better understand your requirements!
Tip: You can attach images by clicking this area to highlight it and then dragging files in.
validations:
required: false

0 comments on commit 7d22deb

Please sign in to comment.