Skip to content

Commit 8118c94

Browse files
authored
chore: add templates for bug report & feature request (#52)
1 parent 430051d commit 8118c94

File tree

2 files changed

+133
-0
lines changed

2 files changed

+133
-0
lines changed
Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
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: |
40+
What version of LocalStack are you using?
41+
42+
You can find the version in the LocalStack startup logs or by running:
43+
curl http://localhost:4566/_localstack/info | jq '.version'
44+
45+
This helps us reproduce and diagnose your issue more effectively.
46+
placeholder: e.g. 4.8.0
47+
validations:
48+
required: true
49+
- type: input
50+
id: localstack-cli-version
51+
attributes:
52+
label: LocalStack CLI Version
53+
description: |
54+
What version of the LocalStack CLI are you using?
55+
56+
You can find the version by running:
57+
localstack --version
58+
59+
This helps us ensure compatibility and troubleshoot CLI-specific issues.
60+
placeholder: e.g. 4.8.0
61+
validations:
62+
required: true
63+
- type: textarea
64+
id: steps-to-reproduce
65+
attributes:
66+
label: Steps to Reproduce
67+
description: Please list the steps needed to reproduce the issue.
68+
placeholder: |
69+
1. Go to '...'
70+
2. Click on '...'
71+
3. See error
72+
validations:
73+
required: true
74+
- type: textarea
75+
id: expected-behavior
76+
attributes:
77+
label: Expected Behavior
78+
description: What did you expect to happen?
79+
placeholder: The expected outcome
80+
validations:
81+
required: true
82+
- type: textarea
83+
id: actual-behavior
84+
attributes:
85+
label: Actual Behavior
86+
description: What actually happened?
87+
placeholder: The actual outcome
88+
validations:
89+
required: true
90+
- type: textarea
91+
id: additional-context
92+
attributes:
93+
label: Additional Context
94+
description: Add any other context, logs, or screenshots about the problem here.
95+
placeholder: Any other details
96+
validations:
97+
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)