Skip to content

Commit 61cc8a0

Browse files
committed
add: issue templates
1 parent 0eeb92a commit 61cc8a0

File tree

2 files changed

+93
-0
lines changed

2 files changed

+93
-0
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
name: Bug Report
2+
description: Report something behaving in an unexpected manor.
3+
body:
4+
- type: markdown
5+
attributes:
6+
value: >
7+
**Please check for similar issues before continuing!**
8+
- type: dropdown
9+
id: OS
10+
attributes:
11+
label: Which OS are you using?
12+
options:
13+
- Windows
14+
- Linux
15+
- MacOS
16+
- Windows WSL
17+
- Other
18+
validations:
19+
required: true
20+
- type: textarea
21+
id: expected
22+
attributes:
23+
label: Expected Behaviour
24+
description: What is the expected behaviour?
25+
validations:
26+
required: true
27+
- type: textarea
28+
id: actual
29+
attributes:
30+
label: Actual Behaviour
31+
description: What is actually happening that is unexpected?
32+
validations:
33+
required: true
34+
- type: textarea
35+
id: reproduction
36+
attributes:
37+
label: Reproduction steps
38+
description: >
39+
Please provide detailed steps to reproduce the error. This will help us
40+
to diagnose, test fixes, and fix the issue.
41+
value: |
42+
1. Go to '...'
43+
2. Click '...'
44+
3. See error '...'
45+
validations:
46+
required: true
47+
- type: textarea
48+
id: additional-notes
49+
attributes:
50+
label: Additional Notes
51+
description: >
52+
Please provide any additional notes, context, and media you have.
53+
- type: textarea
54+
id: log
55+
attributes:
56+
label: Log
57+
description: >
58+
Please provide your log. The log can be found in VS Code by opening the
59+
`OUTPUT` panel and selecting `Lua Addon Manager` from the dropdown.
60+
- type: markdown
61+
attributes:
62+
value: |
63+
Thank you very much for helping us improve! ❤️

.github/ISSUE_TEMPLATE/feature.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Feature Request
2+
description: Request a feature be implemented
3+
body:
4+
- type: markdown
5+
attributes:
6+
value: >
7+
**Please check for similar issues before continuing!**
8+
- type: textarea
9+
id: explain
10+
attributes:
11+
label: Explain the feature
12+
description: >
13+
What is the feature? How will it work? Make a case for why it needs to
14+
be implemented and what problem it solves. It is important to note that
15+
we are purposefully trying to keep the webapp looking native to VS
16+
Code.
17+
validations:
18+
required: true
19+
- type: textarea
20+
id: drawbacks
21+
attributes:
22+
label: Are there any potential drawbacks from adding the feature?
23+
description: >
24+
Think of any potential issues or clashes with current features.
25+
validations:
26+
required: true
27+
- type: markdown
28+
attributes:
29+
value: |
30+
Thank you very much for helping us improve! ❤️

0 commit comments

Comments
 (0)