Skip to content

Commit 1441850

Browse files
committed
added issue templates
1 parent b16adbc commit 1441850

File tree

3 files changed

+98
-0
lines changed

3 files changed

+98
-0
lines changed
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: Bug Report
2+
description: Create a report of an issue you've found
3+
title: "[Bug] "
4+
labels: [ "bug" ]
5+
projects: [ "lua-wow/1" ]
6+
assignees:
7+
- pedrozc90
8+
9+
body:
10+
- type: markdown
11+
attributes:
12+
value: |
13+
Thanks for taking the time to report a bug! Please provide the necessary details below.
14+
15+
- type: textarea
16+
id: what-happened
17+
attributes:
18+
label: What happened?
19+
description: Also tell us, what did you expect to happen?
20+
placeholder: Tell us what you see!
21+
value: "A bug happened!"
22+
validations:
23+
required: true
24+
25+
- type: textarea
26+
id: lua_error
27+
attributes:
28+
label: Lua Error (optional)
29+
description: |
30+
Please paste the error message you encountered. Make sure to wrap it inside triple backticks (```) for proper formatting. Example:
31+
32+
```lua
33+
Lua Error: attempt to index global 'x' (a nil value)
34+
```
35+
36+
placeholder: |
37+
```lua
38+
Paste your Lua error here
39+
```
40+
validations:
41+
required: false

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
blank_issues_enabled: true
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
name: Feature Request
2+
description: Suggest an new feature or improvement for this project.
3+
title: "[Feature] "
4+
labels: [ "enhancement" ]
5+
projects: [ "lua-wow/1" ]
6+
assignees:
7+
- pedrozc90
8+
9+
body:
10+
- type: markdown
11+
attributes:
12+
value: |
13+
Thanks for suggesting a feature! Please provide the necessary details below.
14+
15+
- type: input
16+
id: feature_summary
17+
attributes:
18+
label: Feature Summary
19+
description: Provide a brief overview of the feature you are suggesting.
20+
placeholder: "Summarize your feature idea here..."
21+
validations:
22+
required: true
23+
24+
- type: textarea
25+
id: problem_description
26+
attributes:
27+
label: Problem Description
28+
description: |
29+
What problem is your feature request addressing? Explain the current situation, pain points, or limitations that your feature could solve.
30+
placeholder: "Describe the problem here..."
31+
32+
- type: textarea
33+
id: proposed_solution
34+
attributes:
35+
label: Proposed Solution
36+
description: |
37+
Describe your proposed solution in detail. How would this feature work? If possible, provide examples or use cases for better understanding.
38+
placeholder: "Describe the solution here..."
39+
validations:
40+
required: true
41+
42+
- type: textarea
43+
id: alternatives_considered
44+
attributes:
45+
label: Alternatives Considered
46+
description: |
47+
Have you considered any alternative solutions or workarounds? If yes, please describe them and explain why they wouldn't work as well as your proposal.
48+
placeholder: "Describe any alternative solutions here..."
49+
50+
- type: textarea
51+
id: additional_context
52+
attributes:
53+
label: Additional Context
54+
description: |
55+
Any other context, information, or screenshots that might be helpful for understanding or implementing the feature.
56+
placeholder: "Add any other relevant information here."

0 commit comments

Comments
 (0)