Skip to content

Commit 3761e09

Browse files
committed
chore: add templates for bug report & feature request
1 parent 4a4866a commit 3761e09

File tree

2 files changed

+113
-0
lines changed

2 files changed

+113
-0
lines changed
Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
name: Bug Report
2+
description: Report a problem with the LocalStack Toolkit for VS Code
3+
title: "bug: <title>"
4+
labels: ["type: bug", "status: triage needed"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
## Thank you for reporting a bug!
10+
Please fill out the form below to help us resolve your issue with the LocalStack Toolkit.
11+
- type: input
12+
id: os
13+
attributes:
14+
label: Operating System
15+
description: What operating system are you using?
16+
placeholder: e.g. macOS 14, Windows 11, Ubuntu 22.04
17+
validations:
18+
required: true
19+
- type: input
20+
id: vscode-version
21+
attributes:
22+
label: VS Code Version
23+
description: What version of VS Code are you using?
24+
placeholder: e.g. 1.103.2
25+
validations:
26+
required: true
27+
- type: input
28+
id: extension-version
29+
attributes:
30+
label: Extension Version
31+
description: What version of the LocalStack Toolkit are you using?
32+
placeholder: e.g. 1.2.0
33+
validations:
34+
required: true
35+
- type: input
36+
id: localstack-version
37+
attributes:
38+
label: LocalStack Version
39+
description: What version of LocalStack are you using?
40+
placeholder: e.g. 4.8.0
41+
validations:
42+
required: true
43+
- type: textarea
44+
id: steps-to-reproduce
45+
attributes:
46+
label: Steps to Reproduce
47+
description: Please list the steps needed to reproduce the issue.
48+
placeholder: |
49+
1. Go to '...'
50+
2. Click on '...'
51+
3. See error
52+
validations:
53+
required: true
54+
- type: textarea
55+
id: expected-behavior
56+
attributes:
57+
label: Expected Behavior
58+
description: What did you expect to happen?
59+
placeholder: The expected outcome
60+
validations:
61+
required: true
62+
- type: textarea
63+
id: actual-behavior
64+
attributes:
65+
label: Actual Behavior
66+
description: What actually happened?
67+
placeholder: The actual outcome
68+
validations:
69+
required: true
70+
- type: textarea
71+
id: additional-context
72+
attributes:
73+
label: Additional Context
74+
description: Add any other context, logs, or screenshots about the problem here.
75+
placeholder: Any other details
76+
validations:
77+
required: false
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: ✨ Feature request
2+
description: Request a new feature for the LocalStack Toolkit for VS Code
3+
title: "feature request: <title>"
4+
labels: ["type: feature", "status: triage needed"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for helping improve the LocalStack Toolkit!
10+
- type: checkboxes
11+
attributes:
12+
label: Is there an existing issue for this?
13+
description: Please search to see if an issue already exists for the feature you are requesting.
14+
options:
15+
- label: I have searched the existing issues
16+
required: true
17+
- type: textarea
18+
attributes:
19+
label: Feature description
20+
description: Please describe the feature you would like LocalStack Toolkit to have
21+
validations:
22+
required: true
23+
- type: textarea
24+
attributes:
25+
label: 🧑‍💻 Implementation
26+
description: If you are a developer and have an idea how to implement this feature, please sketch it out here.
27+
validations:
28+
required: false
29+
- type: textarea
30+
attributes:
31+
label: Anything else?
32+
description: |
33+
Links? References? Anything that will give us more context about your request!
34+
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
35+
validations:
36+
required: false

0 commit comments

Comments
 (0)