Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
80 changes: 80 additions & 0 deletions .github/ISSUE_TEMPLATE/what_if.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
name: "What-If Feature Issue"
description: Report issues or request enhancements for Azure CLI What-If feature
labels: ["what-if"]
body:
- type: markdown
id: intro
attributes:
value: |
Thank you for reporting a What-If feature issue! Please provide as much detail as possible.
Comment thread
wangzelin007 marked this conversation as resolved.
Outdated

Comment thread
wangzelin007 marked this conversation as resolved.
Outdated
- type: dropdown
id: issue-type
attributes:
label: Issue Type
description: What type of issue are you reporting?
options:
- Bug Report
- Feature Request
- Documentation Issue
validations:
required: true

- type: textarea
id: description
attributes:
label: Description
description: Provide a clear description of the issue or feature request
placeholder: Describe what happened or what you'd like to see
validations:
required: true

- type: textarea
id: command
attributes:
label: Command or Script
description: Provide the command or script that demonstrates the issue
Comment thread
wangzelin007 marked this conversation as resolved.
Outdated
placeholder: |
az vm create --what-if --export-bicep ...
render: shell
validations:
required: true

- type: textarea
id: expected
attributes:
label: Expected Behavior
description: What did you expect to happen?
placeholder: Describe the expected outcome
validations:
required: true

- type: textarea
id: actual
attributes:
label: Actual Behavior
description: What actually happened?
placeholder: Describe what actually occurred
validations:
required: true

- type: textarea
id: environment
attributes:
label: Environment
description: Provide environment details
placeholder: |
- OS: Windows 11 / Ubuntu 22.04 / macOS 14
- Tool Version: Azure CLI 2.80.0
- Python Version: 3.12.10
validations:
required: true

- type: textarea
id: additional
attributes:
label: Additional Context
description: Add any other context, screenshots, or logs
placeholder: Any additional information that might be helpful
validations:
required: false
Loading