Skip to content

Commit b92f2c8

Browse files
committed
[What-If] Add GitHub issue template for What-If feature
1 parent 3b51ff5 commit b92f2c8

File tree

1 file changed

+80
-0
lines changed

1 file changed

+80
-0
lines changed

.github/ISSUE_TEMPLATE/what_if.yml

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
name: "What-If Feature Issue"
2+
description: Report issues or request enhancements for Azure CLI What-If feature
3+
labels: ["what-if"]
4+
body:
5+
- type: markdown
6+
id: intro
7+
attributes:
8+
value: |
9+
Thank you for reporting a What-If feature issue! Please provide as much detail as possible.
10+
11+
- type: dropdown
12+
id: issue-type
13+
attributes:
14+
label: Issue Type
15+
description: What type of issue are you reporting?
16+
options:
17+
- Bug Report
18+
- Feature Request
19+
- Documentation Issue
20+
validations:
21+
required: true
22+
23+
- type: textarea
24+
id: description
25+
attributes:
26+
label: Description
27+
description: Provide a clear description of the issue or feature request
28+
placeholder: Describe what happened or what you'd like to see
29+
validations:
30+
required: true
31+
32+
- type: textarea
33+
id: command
34+
attributes:
35+
label: Command or Script
36+
description: Provide the command or script that demonstrates the issue
37+
placeholder: |
38+
az vm create --what-if --export-bicep ...
39+
render: shell
40+
validations:
41+
required: true
42+
43+
- type: textarea
44+
id: expected
45+
attributes:
46+
label: Expected Behavior
47+
description: What did you expect to happen?
48+
placeholder: Describe the expected outcome
49+
validations:
50+
required: true
51+
52+
- type: textarea
53+
id: actual
54+
attributes:
55+
label: Actual Behavior
56+
description: What actually happened?
57+
placeholder: Describe what actually occurred
58+
validations:
59+
required: true
60+
61+
- type: textarea
62+
id: environment
63+
attributes:
64+
label: Environment
65+
description: Provide environment details
66+
placeholder: |
67+
- OS: Windows 11 / Ubuntu 22.04 / macOS 14
68+
- Tool Version: Azure CLI 2.80.0
69+
- Python Version: 3.12.10
70+
validations:
71+
required: true
72+
73+
- type: textarea
74+
id: additional
75+
attributes:
76+
label: Additional Context
77+
description: Add any other context, screenshots, or logs
78+
placeholder: Any additional information that might be helpful
79+
validations:
80+
required: false

0 commit comments

Comments
 (0)