Skip to content

Commit ff117bb

Browse files
committed
Add basic issue template
This directs users to ask questions on stackoverflow instead of here
1 parent c711b1c commit ff117bb

File tree

2 files changed

+43
-0
lines changed

2 files changed

+43
-0
lines changed

.github/ISSUE_TEMPLATE/config.yml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: 🙋 Ask Question
4+
about: Ask questions about developing VS Code extensions on Stack Overflow.
5+
url: 'https://stackoverflow.com/questions/tagged/vscode-extensions'
6+
- name: 💬 Discuss
7+
url: https://github.com/microsoft/vscode-discussions/discussions
8+
about: Discuss extension development questions and ideas with the VS Code developer community.
+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: 🐛 Report Extension Sample Issue
2+
description: Report an issue with one of the extension samples.
3+
body:
4+
- type: markdown
5+
attributes:
6+
value: |
7+
Thank you for taking the time to fill out this bug report! Please make sure to fill in the following sections:
8+
- type: input
9+
id: sample-name
10+
attributes:
11+
label: Extension sample
12+
description: Name of the extension sample that you are reporting with issue in
13+
placeholder: extension-sample-name
14+
validations:
15+
required: true
16+
- type: input
17+
id: vscode-version
18+
attributes:
19+
label: VS Code version
20+
description: The version of VS Code that the issue reproduces in
21+
placeholder: 1.xx.x
22+
validations:
23+
required: true
24+
- type: textarea
25+
id: what-happened
26+
attributes:
27+
label: What went wrong?
28+
description: |
29+
Tell us what what went wrong. Be sure to include:
30+
31+
- What were you trying to do?
32+
- What went wrong?
33+
- What was the expected behavior?
34+
validations:
35+
required: true

0 commit comments

Comments
 (0)