Skip to content

Commit 15c4141

Browse files
priyanshu92claude
andauthored
Add issue templates and SUPPORT.md (#1511)
- Add bug report issue template with extension version, VS Code version, and VS Code channel fields - Add feature request issue template - Add SUPPORT.md with links to GitHub Issues and docs Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent dd5afdb commit 15c4141

3 files changed

Lines changed: 140 additions & 0 deletions

File tree

Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
name: Bug Report
2+
description: Report a bug or unexpected behavior
3+
title: "[Bug]: "
4+
labels: ["bug"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thank you for reporting an issue! Please fill out the information below to help us investigate.
10+
11+
- type: textarea
12+
id: description
13+
attributes:
14+
label: Description
15+
description: A clear and concise description of the bug.
16+
placeholder: Describe the issue you encountered...
17+
validations:
18+
required: true
19+
20+
- type: input
21+
id: extension-version
22+
attributes:
23+
label: Extension Version
24+
description: "The version of the Power Platform Tools extension. You can find this in VS Code: Extensions view > Power Platform Tools > version number."
25+
placeholder: "e.g., 2.0.133"
26+
validations:
27+
required: true
28+
29+
- type: input
30+
id: vscode-version
31+
attributes:
32+
label: VS Code Version
33+
description: "The version of VS Code you are using. You can find this via Help > About."
34+
placeholder: "e.g., 1.96.0"
35+
validations:
36+
required: true
37+
38+
- type: dropdown
39+
id: vscode-channel
40+
attributes:
41+
label: VS Code Channel
42+
description: Which VS Code release channel are you using?
43+
options:
44+
- Stable
45+
- Insiders
46+
validations:
47+
required: true
48+
49+
- type: textarea
50+
id: steps-to-reproduce
51+
attributes:
52+
label: Steps to Reproduce
53+
description: List the steps to reproduce the issue.
54+
placeholder: |
55+
1. Open VS Code
56+
2. ...
57+
3. ...
58+
validations:
59+
required: true
60+
61+
- type: textarea
62+
id: expected-behavior
63+
attributes:
64+
label: Expected Behavior
65+
description: What did you expect to happen?
66+
validations:
67+
required: false
68+
69+
- type: textarea
70+
id: actual-behavior
71+
attributes:
72+
label: Actual Behavior
73+
description: What actually happened?
74+
validations:
75+
required: false
76+
77+
- type: textarea
78+
id: additional-context
79+
attributes:
80+
label: Additional Context
81+
description: Add any other context, screenshots, or log output that may help.
82+
validations:
83+
required: false
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: Feature Request
2+
description: Suggest a new feature or enhancement
3+
title: "[Feature]: "
4+
labels: ["enhancement"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thank you for suggesting a feature! Please provide as much detail as possible to help us understand your request.
10+
11+
- type: textarea
12+
id: problem
13+
attributes:
14+
label: Problem Statement
15+
description: Is your feature request related to a problem? Please describe.
16+
placeholder: "A clear and concise description of the problem. e.g., I'm always frustrated when..."
17+
validations:
18+
required: true
19+
20+
- type: textarea
21+
id: solution
22+
attributes:
23+
label: Proposed Solution
24+
description: Describe the solution you'd like.
25+
placeholder: A clear and concise description of what you want to happen.
26+
validations:
27+
required: true
28+
29+
- type: textarea
30+
id: alternatives
31+
attributes:
32+
label: Alternatives Considered
33+
description: Describe any alternative solutions or features you've considered.
34+
validations:
35+
required: false
36+
37+
- type: textarea
38+
id: additional-context
39+
attributes:
40+
label: Additional Context
41+
description: Add any other context, mockups, or screenshots about the feature request.
42+
validations:
43+
required: false

SUPPORT.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Support
2+
3+
## How to file issues and get help
4+
5+
This project uses GitHub Issues to track bugs and feature requests. Please search the
6+
[existing issues](https://github.com/microsoft/powerplatform-vscode/issues) before filing
7+
new issues to avoid duplicates. For new issues, file your bug or feature request as a new Issue.
8+
9+
For help and questions about using this project, please refer to the
10+
[Power Platform documentation](https://learn.microsoft.com/power-platform/).
11+
12+
## Microsoft Support Policy
13+
14+
Support for this project is limited to the resources listed above.

0 commit comments

Comments
 (0)