Skip to content

Commit 807ffe6

Browse files
authored
Update bug report template
1 parent dddd046 commit 807ffe6

File tree

2 files changed

+89
-46
lines changed

2 files changed

+89
-46
lines changed

.github/ISSUE_TEMPLATE/bug-report.md

Lines changed: 0 additions & 46 deletions
This file was deleted.
Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
name: 🐞 Bug report
2+
description: Create a report about something that is not working
3+
labels: ["untriaged"]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Please keep in mind that the GitHub issue tracker is not intended as a general support forum, but for reporting **non-security** bugs and feature requests.
9+
For general questions, consider posting to [Discussions](https://github.com/microsoft/dotnet-framework-docker/discussions) or [Stack Overflow](https://stackoverflow.com).
10+
11+
If you're reporting the presence of a disclosed security vulnerability, such as a CVE reported in one of our container images, please follow our [vulnerability reporting guidelines](https://github.com/dotnet/dotnet-docker/blob/main/documentation/vulnerability-reporting.md).
12+
13+
If you believe you have an issue that affects the security of .NET, please do NOT create an issue and instead email your issue details to [email protected].
14+
Your report may be eligible for our [bug bounty](https://www.microsoft.com/en-us/msrc/bounty-dot-net-core) but ONLY if it is reported through email.
15+
---
16+
17+
- type: markdown
18+
attributes:
19+
value: |
20+
## Description
21+
22+
Please provide a clear and concise description of the bug.
23+
24+
- type: textarea
25+
id: description
26+
attributes:
27+
label: Describe the bug
28+
validations:
29+
required: true
30+
31+
- type: input
32+
id: image
33+
attributes:
34+
label: Which .NET image(s) are you using?
35+
description: Please specify the exact digest if possible; otherwise, provide the tag name
36+
placeholder: mcr.microsoft.com/dotnet/framework/sdk:4.8.1-windowsservercore-ltsc2025@sha256:0123456789abcdef...
37+
38+
- type: markdown
39+
attributes:
40+
value: |
41+
## Steps to reproduce the bug
42+
43+
Include minimal steps to reproduce the problem or point us to a simple repro project hosted in a GitHub repo.
44+
We may close this issue if:
45+
46+
* We are not able to repro the behavior you're reporting
47+
* The repro project you share with us is too complex
48+
* The repro is in a file attachment such as a zip file
49+
50+
- type: textarea
51+
id: steps-to-reproduce
52+
attributes:
53+
label: Steps to reproduce
54+
55+
- type: markdown
56+
attributes:
57+
value: |
58+
## Other Information
59+
60+
Please include any other information that you think is helpful.
61+
62+
* What other issues did you find before opening this one?
63+
* What error messages do you see?
64+
* When does this issue occur? Does it occur consistently?
65+
* Do you know of any workarounds?
66+
* What is the container host OS and version?
67+
68+
- type: textarea
69+
id: other-information
70+
attributes:
71+
label: Other information
72+
73+
- type: textarea
74+
id: docker-version
75+
attributes:
76+
label: Output of `docker version`
77+
description: Paste the output of `docker version` here.
78+
render: console
79+
80+
- type: textarea
81+
id: docker-info
82+
attributes:
83+
label: Output of `docker info`
84+
description: Paste the output of `docker info` here.
85+
render: console
86+
87+
- type: markdown
88+
attributes:
89+
value: Thanks for taking the time to report this!

0 commit comments

Comments
 (0)