Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
55 changes: 55 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
name: Bug Report
description: Report an issue with the project.
title: "[BUG] - [short description]"
labels: bug
assignees: ''

body:
- type: markdown
attributes:
value: |
## Bug Report

Please fill out the following information to help us better understand the issue.

- type: input
attributes:
label: "Bug Description"
description: "Provide a clear and concise description of the bug."
placeholder: "e.g., The app crashes when I try to login."
Comment thread
rahuldevikar761 marked this conversation as resolved.
Outdated
required: true

- type: textarea
attributes:
label: "Steps to Reproduce"
description: "List the steps to reproduce the behavior."
placeholder: "e.g., 1. Go to login page, 2. Enter username and password, 3. Click login"
Comment thread
rahuldevikar761 marked this conversation as resolved.
Outdated
required: true

- type: input
attributes:
label: "Expected Behavior"
description: "What did you expect to happen?"
placeholder: "e.g., The app should log me in successfully."
Comment thread
rahuldevikar761 marked this conversation as resolved.
Outdated
required: true

- type: input
attributes:
label: "Environment"
description: "Please specify the environment where the bug occurs (e.g., OS, browser version)."
placeholder: "e.g., Windows 10, Chrome 92"
Comment thread
rahuldevikar761 marked this conversation as resolved.
Outdated
required: true

- type: input
attributes:
label: "Version"
description: "What version of the project are you using?"
placeholder: "e.g., 1.0.0"
required: true

- type: textarea
attributes:
label: "Additional Context"
description: "Add any other context or screenshots that might help us understand the issue."
placeholder: "e.g., Logs, stack traces, screenshots"
required: false
7 changes: 7 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# .github/ISSUE_TEMPLATE/config.yml
default:
- bug_report
- feature_request
labels:
- "type: bug"
- "type: enhancement"
48 changes: 48 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: Feature Request
description: Suggest a new feature or improvement.
title: "[FEATURE] - [short description]"
labels: enhancement
assignees: ''

body:
- type: markdown
attributes:
value: |
## Feature Request

Please fill out the following template to help us evaluate your request.

- type: input
attributes:
label: "Feature Description"
description: "Describe the feature or enhancement you would like to see."
placeholder: "e.g., Add dark mode support to the app."
Comment thread
rahuldevikar761 marked this conversation as resolved.
Outdated
required: true

- type: textarea
attributes:
label: "Use Case"
description: "What problem does this feature solve or how would it improve the project?"
placeholder: "e.g., Dark mode would make the app more comfortable to use at night."
Comment thread
rahuldevikar761 marked this conversation as resolved.
Outdated
required: true

- type: input
attributes:
label: "Potential Impact"
description: "How would this feature impact the project or the user experience?"
placeholder: "e.g., It would improve accessibility for users with vision impairments."
Comment thread
rahuldevikar761 marked this conversation as resolved.
Outdated
required: true

- type: input
attributes:
label: "Priority"
description: "How important is this feature? (Low, Medium, High)"
placeholder: "e.g., High"
required: true

- type: textarea
attributes:
label: "Additional Context"
description: "Add any other information that might be helpful."
placeholder: "e.g., Related issues, screenshots, external resources."
required: false
Loading