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

[Feature] Issue Templates #47

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
35 changes: 35 additions & 0 deletions .github/ISSUE_TEMPLATE/BUG_REPORT.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: 🐞 Bug Report
description: Issue something wrong
title: "[BUG]: <Title>"
labels: ["bug", "triage"]
assignees: ["moha-b"]
body:
- type: textarea
id: bug-description
attributes:
label: Description of the bug
description: Give us a brief description of what happened and what should have happened.
placeholder: |
Tell us what you see!
validations:
required: true

- type: textarea
id: steps-to-reproduce
attributes:
label: Steps To Reproduce
description: Steps to reproduce the behavior.
placeholder: |
1. Go to '...'
2. Click on '...'
3. Scroll down to '...'
4. See error
validations:
required: true

- type: textarea
id: additional-information
attributes:
label: Additional Information
description: |
Provide any additional information such as logs, screenshots, likes, scenarios in which the bug occurs so that it facilitates resolving the issue.
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: Submit a feature request
title: "[FEATURE]: <title>"
labels: ["feature", "triage"]
assignees: ["moha-b"]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to submit this feature request!
- type: dropdown
attributes:
multiple: false
label: Type of Feature
description: Select the type of feature request.
options:
- "✨ New Feature"
- "📝 Documentation"
- "🎨 Style and UI"
- "🔨 Code Refactor"
- "⚡ Performance Improvements"
- "🧪 New Test"
validations:
required: true
- type: textarea
id: description
attributes:
label: Description
description: Describe the new feature in detail.
placeholder: Provide a comprehensive overview of the proposed feature.
validations:
required: true
- type: textarea
id: benefits
attributes:
label: Benefits
description: Explain the benefits of implementing this feature.
placeholder: Describe how users and the project would benefit from this addition.
validations:
required: true
- type: textarea
id: use-cases
attributes:
label: Use Cases
description: Outline the use cases or scenarios where this feature would be beneficial.
placeholder: Describe specific situations where the feature would be valuable.
validations:
required: false
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
blank_issues_enabled: false