-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update issue templates to issue forms (#17)
Signed-off-by: Nishant Nayak <[email protected]>
- Loading branch information
1 parent
644ca7b
commit 7d22deb
Showing
4 changed files
with
117 additions
and
91 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |