Skip to content

Commit d1b447c

Browse files
authored
Add bug report template (#248)
1 parent 8f3aa8b commit d1b447c

File tree

1 file changed

+82
-0
lines changed

1 file changed

+82
-0
lines changed

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
name: Bug report
2+
description: Let us know about functionality that is not working as expected
3+
labels: ["bug", "triage"]
4+
title: "[BUG]: <short description>"
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thank you taking the time to report this issue.
10+
11+
Please complete the below form to ensure we have the necessary details to diagnose and resolve the issue.
12+
- type: textarea
13+
id: description
14+
attributes:
15+
label: Description
16+
description: Provide a short description of the issue
17+
validations:
18+
required: true
19+
- type: textarea
20+
id: expected
21+
attributes:
22+
label: Expected behaviour
23+
description: Provide a description of what you expect to happen
24+
validations:
25+
required: true
26+
- type: textarea
27+
id: actual
28+
attributes:
29+
label: Actual behaviour
30+
description: Provide a description of what actually happens
31+
validations:
32+
required: true
33+
- type: textarea
34+
id: steps
35+
attributes:
36+
label: Steps to reproduce
37+
description: Provide the steps so that we can reproduce the error
38+
validations:
39+
required: true
40+
- type: input
41+
id: mgdpversion
42+
attributes:
43+
label: Microsoft Graph Developer Proxy Version
44+
description: |
45+
Provide the version of the proxy you are using.
46+
47+
Execute `mgdp --version` in your terminal to identify your version
48+
validations:
49+
required: true
50+
- type: dropdown
51+
id: os
52+
attributes:
53+
label: Operating system (environment)
54+
description: Provide the operating system that you are using
55+
options:
56+
- Windows
57+
- macOS
58+
- Linux
59+
validations:
60+
required: true
61+
- type: dropdown
62+
id: shell
63+
attributes:
64+
label: Shell
65+
description: Provide the shell that you are using to run the proxy
66+
options:
67+
- PowerShell
68+
- Windows PowerShell
69+
- cmd
70+
- bash
71+
- zsh
72+
- Other
73+
validations:
74+
required: true
75+
- type: textarea
76+
id: info
77+
attributes:
78+
label: Additional Info
79+
description: |
80+
Provide any additional information that may help with the identification of the root cause of this issue
81+
validations:
82+
required: false

0 commit comments

Comments
 (0)