Skip to content

Commit 8c1e297

Browse files
committed
replace issue templates with issue forms
1 parent cdea5c3 commit 8c1e297

File tree

5 files changed

+82
-27
lines changed

5 files changed

+82
-27
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 14 deletions
This file was deleted.
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema
2+
3+
name: 🐛 Bug Report
4+
description: Report a bug
5+
title: (bug summary)
6+
labels: [bug, needs-triage]
7+
body:
8+
- type: textarea
9+
id: description
10+
attributes:
11+
label: Description and Reproduction Steps
12+
description: |
13+
What is the problem?
14+
Please provide a short description and steps, code snippets, etc. to reproduce the issue.
15+
validations:
16+
required: true
17+
18+
- type: textarea
19+
id: current
20+
attributes:
21+
label: Current Behavior
22+
description: |
23+
What actually happenes?
24+
validations:
25+
required: true
26+
27+
- type: textarea
28+
id: expected
29+
attributes:
30+
label: Expected Behavior
31+
description: What did you expect to happen instead?
32+
validations:
33+
required: true
34+
35+
- type: textarea
36+
id: context
37+
attributes:
38+
label: Additional Information
39+
description: Suggest a fix for the bug or include anything else that might be helpful for troubleshooting.
40+
validations:
41+
required: false
42+
43+
- type: textarea
44+
id: environment
45+
attributes:
46+
label: Environment details
47+
value: |
48+
OS:
49+
VS Code Version:
50+
Extension Version:
51+
validations:
52+
required: true

.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

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 13 deletions
This file was deleted.
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: 🚀 Feature Request
2+
description: Suggest an improvement or idea
3+
title: (feature summary)
4+
labels: [enhancement]
5+
6+
body:
7+
- type: textarea
8+
id: description
9+
attributes:
10+
label: Describe the feature
11+
description: A clear and concise description what problem the feature should solve or why it is an improvement.
12+
validations:
13+
required: true
14+
15+
- type: textarea
16+
id: solution
17+
attributes:
18+
label: Proposed Solution
19+
description: Suggest how to feature might work. If possible include a prototype or reference implementation.
20+
validations:
21+
required: false
22+
23+
- type: textarea
24+
id: context
25+
attributes:
26+
label: Additional Information
27+
description: Any alternative solutions you have considered or additional information.
28+
validations:
29+
required: false

0 commit comments

Comments
 (0)