You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Our issue templates required users checking several "preflight checklist" checkboxes. Requiring these fields was an attempt to encourage users to follow these instructions before filing issues. However, they add unecessary clutter to the issues that are formed, and a lot of users either don't find what they're looking for or ignore the information anyway. Convering the information to Markdown instead of as inputs is more convenient for users and for us.
Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE/bug_report.yml
+21-18Lines changed: 21 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -2,22 +2,18 @@ name: Report a Bug
2
2
description: Something not working as expected? Create an issue to help us improve.
3
3
type: "Bug"
4
4
body:
5
-
- type: checkboxes
6
-
id: pre-flight
7
-
attributes:
8
-
label: Preflight Checklist
9
-
description: "Before submitting a bug report, please make sure you've done the following:"
10
-
options:
11
-
- label: I have installed the [latest version of Storage Explorer](https://github.com/Microsoft/AzureStorageExplorer/releases/latest).
12
-
required: true
13
-
- label: I have checked existing resources, including the [troubleshooting guide](https://docs.microsoft.com/azure/storage/common/storage-explorer-troubleshooting) and the [release notes](https://github.com/microsoft/AzureStorageExplorer/releases).
14
-
required: true
15
-
- label: I have searched for [similar issues](https://github.com/Microsoft/AzureStorageExplorer/issues).
16
-
required: true
17
-
18
5
- type: markdown
19
6
attributes:
20
-
value: ---
7
+
value: |
8
+
### Preflight Checklist
9
+
10
+
Before submitting a bug report, please make sure you've done the following:
11
+
12
+
- [ ] I have installed the [latest version of Storage Explorer](https://github.com/Microsoft/AzureStorageExplorer/releases/latest).
13
+
- [ ] I have checked existing resources, including the [troubleshooting guide](https://docs.microsoft.com/azure/storage/common/storage-explorer-troubleshooting) and the [release notes](https://github.com/microsoft/AzureStorageExplorer/releases).
14
+
- [ ] I have searched for [similar issues](https://github.com/Microsoft/AzureStorageExplorer/issues).
15
+
16
+
---
21
17
22
18
- type: input
23
19
id: app-version
@@ -41,7 +37,6 @@ body:
41
37
label: Architecture
42
38
description: Open the About dialog in Storage Explorer to find this.
43
39
options:
44
-
- i86
45
40
- x64
46
41
- arm64
47
42
validations:
@@ -69,13 +64,12 @@ body:
69
64
- Linux (snap)
70
65
validations:
71
66
required: true
72
-
67
+
73
68
- type: input
74
69
id: os-version
75
70
attributes:
76
71
label: OS Version
77
-
placeholder: Windows 10; macOS Big Sur; Ubuntu 20.04
78
-
72
+
placeholder: Windows 11; macOS Sequoia 15.3.1; Ubuntu 22.04
79
73
- type: markdown
80
74
attributes:
81
75
value: ---
@@ -85,6 +79,8 @@ body:
85
79
attributes:
86
80
label: Bug Description
87
81
description: Provide a clear, concise description of the bug.
82
+
placeholder: |
83
+
Describe the bug you're seeing.
88
84
validations:
89
85
required: true
90
86
@@ -104,6 +100,8 @@ body:
104
100
attributes:
105
101
label: Actual Experience
106
102
description: Provide a clear, concise description of what actually happens. If applicable, add screenshots to help explain what happened.
103
+
placeholder: |
104
+
What actually happens when I follow the steps to reproduce?
107
105
validations:
108
106
required: true
109
107
@@ -112,9 +110,14 @@ body:
112
110
attributes:
113
111
label: Expected Experience
114
112
description: Provide a clear, concise description of what you expected to happen. If applicable, add screenshots to help explain what you expected.
113
+
placeholder: |
114
+
What should happen when I follow the steps to reproduce?
115
115
116
116
- type: textarea
117
117
id: context
118
118
attributes:
119
119
label: Additional Context
120
120
description: Add any other details, such as error messages, unusual system configurations, network restrictions, etc.
121
+
placeholder: |
122
+
Error messages, proxy configurations, system permissions, etc.
Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE/feature_request.yml
+13-16Lines changed: 13 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -1,25 +1,19 @@
1
1
name: Request a Feature
2
2
description: Have an idea that would make Storage Explorer better? Let us know!
3
3
type: "Feature"
4
-
labels:
5
-
- ":bulb: feature request"
6
4
body:
7
-
- type: checkboxes
8
-
id: pre-flight
9
-
attributes:
10
-
label: Preflight Checklist
11
-
description: "Before submitting a feature request, please make sure you've done the following:"
12
-
options:
13
-
- label: I have installed the [latest version of Storage Explorer](https://github.com/Microsoft/AzureStorageExplorer/releases/latest).
14
-
required: true
15
-
- label: I have checked existing resources, including the [troubleshooting guide](https://docs.microsoft.com/azure/storage/common/storage-explorer-troubleshooting) and the [release notes](https://github.com/microsoft/AzureStorageExplorer/releases).
16
-
required: true
17
-
- label: I have searched for [similar issues](https://github.com/Microsoft/AzureStorageExplorer/issues).
18
-
required: true
19
-
20
5
- type: markdown
21
6
attributes:
22
-
value: ---
7
+
value: |
8
+
### Preflight Checklist
9
+
10
+
Before submitting a feature request, please make sure you've done the following:
11
+
12
+
- [ ] I have installed the [latest version of Storage Explorer](https://github.com/Microsoft/AzureStorageExplorer/releases/latest).
13
+
- [ ] I have checked existing resources, including the [troubleshooting guide](https://docs.microsoft.com/azure/storage/common/storage-explorer-troubleshooting) and the [release notes](https://github.com/microsoft/AzureStorageExplorer/releases).
14
+
- [ ] I have searched for [similar issues](https://github.com/Microsoft/AzureStorageExplorer/issues).
15
+
16
+
---
23
17
24
18
- type: input
25
19
id: goal
@@ -58,3 +52,6 @@ body:
58
52
attributes:
59
53
label: Additional Context
60
54
description: Add any other context or screenshots that can help us understand your feature request better.
0 commit comments