Skip to content

Commit 5043544

Browse files
committed
added ISSUES Template
1 parent ca7b23d commit 5043544

File tree

4 files changed

+237
-0
lines changed

4 files changed

+237
-0
lines changed
+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: ​🐞 Bug
2+
description: Report an issue to help us improve the project.
3+
title: "[BUG] <write a small description here>"
4+
labels: ["bug", "goal: fix", "priority: medium"]
5+
body:
6+
- type: textarea
7+
attributes:
8+
label: Description
9+
description: A brief description of the issue or bug you are facing, also include what you tried and what didn't work.
10+
validations:
11+
required: false
12+
- type: textarea
13+
attributes:
14+
label: Screenshots
15+
description: Please add screenshots if applicable
16+
validations:
17+
required: false
18+
- type: textarea
19+
attributes:
20+
label: Any additional information?
21+
description: Any additional information or Is there anything we should know about this bug?
22+
validations:
23+
required: false
24+
- type: dropdown
25+
attributes:
26+
label: What browser are you seeing the problem on?
27+
multiple: true
28+
options:
29+
- Firefox
30+
- Chrome
31+
- Safari
32+
- Microsoft Edge
+67
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
name: "📚 Documentation Update"
2+
description: "Help us improve our documentation"
3+
title: "[DOCS] "
4+
labels: ["documentation"]
5+
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
Thanks for helping improve our documentation! 📖
11+
Please fill out the information below to help us understand your suggestion better.
12+
13+
- type: textarea
14+
id: current_docs
15+
attributes:
16+
label: "Current Documentation"
17+
description: "What's currently in the documentation that needs to be updated?"
18+
placeholder: "Example: The installation guide is missing steps for Windows setup..."
19+
validations:
20+
required: true
21+
22+
- type: textarea
23+
id: suggested_change
24+
attributes:
25+
label: "Suggested Changes"
26+
description: "What changes would you like to see?"
27+
placeholder: "Example: Add Windows-specific installation steps..."
28+
validations:
29+
required: true
30+
31+
- type: textarea
32+
id: screenshots
33+
attributes:
34+
label: "Screenshots or Examples"
35+
description: "Add screenshots or examples if applicable"
36+
placeholder: "Drag and drop images here..."
37+
38+
- type: dropdown
39+
id: doc_type
40+
attributes:
41+
label: "Documentation Type"
42+
options:
43+
- Installation Guide
44+
- API Reference
45+
- Tutorials
46+
- README
47+
- Other
48+
validations:
49+
required: true
50+
51+
- type: checkboxes
52+
id: terms
53+
attributes:
54+
label: "Contribution Agreement"
55+
options:
56+
- label: "I have searched existing issues and this is not a duplicate"
57+
required: true
58+
- label: "I have read the contributing guidelines"
59+
required: true
60+
- label: "I would like to work on fixing this documentation"
61+
required: false
62+
63+
- type: markdown
64+
attributes:
65+
value: |
66+
---
67+
⭐ Thank you for helping make our documentation better!
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
name: "✨ Feature Request"
2+
description: "Suggest a new feature to enhance our Leetcode-Journal"
3+
title: "[FEATURE] "
4+
labels: ["enhancement"]
5+
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
# Feature Request
11+
Thanks for taking the time to suggest a new feature!
12+
Please fill out the information below to help us understand your suggestion better.
13+
14+
- type: textarea
15+
id: problem
16+
attributes:
17+
label: "Problem Statement"
18+
description: "What problem does this feature solve?"
19+
placeholder: "I'm always frustrated when..."
20+
validations:
21+
required: true
22+
23+
- type: textarea
24+
id: solution
25+
attributes:
26+
label: "Proposed Solution"
27+
description: "Describe the solution you'd like"
28+
placeholder: "It would be great if..."
29+
validations:
30+
required: true
31+
32+
- type: textarea
33+
id: alternatives
34+
attributes:
35+
label: "Alternative Solutions"
36+
description: "What alternatives have you considered?"
37+
placeholder: "Another approach could be..."
38+
39+
- type: textarea
40+
id: screenshots
41+
attributes:
42+
label: "Screenshots or Mockups"
43+
description: "Add any relevant screenshots, mockups or examples"
44+
placeholder: "Drag and drop images here..."
45+
46+
- type: dropdown
47+
id: priority
48+
attributes:
49+
label: "Priority"
50+
options:
51+
- High
52+
- Medium
53+
- Low
54+
validations:
55+
required: true
56+
57+
- type: checkboxes
58+
id: terms
59+
attributes:
60+
label: "Contribution Guidelines"
61+
options:
62+
- label: "I have searched [existing issues](https://github.com/yashksaini-coder/Leetcode-Journal/issues) and this is not a duplicate"
63+
required: true
64+
- label: "I would like to implement this feature"
65+
required: false
66+
67+
- type: markdown
68+
attributes:
69+
value: |
70+
---
71+
💡 Thank you for contributing to make our Leetcode Journal better!
+67
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
name: "🤔 General Issue"
2+
description: "Submit a general question, suggestion or issue"
3+
title: "[GENERAL] "
4+
labels: ["triage-needed"]
5+
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
# General Issue Template
11+
Thanks for taking the time to fill out this issue! Please provide as much information as possible.
12+
13+
- type: dropdown
14+
id: category
15+
attributes:
16+
label: "Category"
17+
description: "What type of issue is this?"
18+
options:
19+
- Question
20+
- Suggestion
21+
- Problem
22+
- Other
23+
validations:
24+
required: true
25+
26+
- type: textarea
27+
id: description
28+
attributes:
29+
label: "Description"
30+
description: "What would you like to share or ask?"
31+
placeholder: "Provide details about your issue, question, or suggestion..."
32+
validations:
33+
required: true
34+
35+
- type: textarea
36+
id: additional
37+
attributes:
38+
label: "Additional Context"
39+
description: "Add any other context, screenshots, or relevant information"
40+
placeholder: "Add any additional details here..."
41+
42+
- type: dropdown
43+
id: impact
44+
attributes:
45+
label: "Impact Level"
46+
options:
47+
- High
48+
- Medium
49+
- Low
50+
validations:
51+
required: true
52+
53+
- type: checkboxes
54+
id: terms
55+
attributes:
56+
label: "Contribution Guidelines"
57+
options:
58+
- label: "I have searched [existing issues](https://github.com/yashksaini-coder/Leetcode-Journal/issues) to avoid duplicates"
59+
required: true
60+
- label: "I would like to help resolve this issue"
61+
required: false
62+
63+
- type: markdown
64+
attributes:
65+
value: |
66+
---
67+
Thank you for contributing to our project! 🙏

0 commit comments

Comments
 (0)