From 807ffe671701185a9294be46acfcf9cc5aca7f57 Mon Sep 17 00:00:00 2001 From: Logan Bussell Date: Mon, 3 Mar 2025 08:17:26 -0800 Subject: [PATCH 1/2] Update bug report template --- .github/ISSUE_TEMPLATE/bug-report.md | 46 -------------- .github/ISSUE_TEMPLATE/bug-report.yml | 89 +++++++++++++++++++++++++++ 2 files changed, 89 insertions(+), 46 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug-report.md create mode 100644 .github/ISSUE_TEMPLATE/bug-report.yml diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md deleted file mode 100644 index 88488eae..00000000 --- a/.github/ISSUE_TEMPLATE/bug-report.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -name: 🐞 Bug report -about: Create a report about something that is not working -labels: ['bug', 'untriaged'] -title: ---- - - - -### Describe the Bug - - - -### Steps to Reproduce - - - -### Other Information - - - -### Output of `docker version` - - - -### Output of `docker info` - - - - diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml new file mode 100644 index 00000000..d6246bf7 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -0,0 +1,89 @@ +name: 🐞 Bug report +description: Create a report about something that is not working +labels: ["untriaged"] +body: + - type: markdown + attributes: + value: | + 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. + For general questions, consider posting to [Discussions](https://github.com/microsoft/dotnet-framework-docker/discussions) or [Stack Overflow](https://stackoverflow.com). + + 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). + + 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 secure@microsoft.com. + 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. + --- + + - type: markdown + attributes: + value: | + ## Description + + Please provide a clear and concise description of the bug. + + - type: textarea + id: description + attributes: + label: Describe the bug + validations: + required: true + + - type: input + id: image + attributes: + label: Which .NET image(s) are you using? + description: Please specify the exact digest if possible; otherwise, provide the tag name + placeholder: mcr.microsoft.com/dotnet/framework/sdk:4.8.1-windowsservercore-ltsc2025@sha256:0123456789abcdef... + + - type: markdown + attributes: + value: | + ## Steps to reproduce the bug + + Include minimal steps to reproduce the problem or point us to a simple repro project hosted in a GitHub repo. + We may close this issue if: + + * We are not able to repro the behavior you're reporting + * The repro project you share with us is too complex + * The repro is in a file attachment such as a zip file + + - type: textarea + id: steps-to-reproduce + attributes: + label: Steps to reproduce + + - type: markdown + attributes: + value: | + ## Other Information + + Please include any other information that you think is helpful. + + * What other issues did you find before opening this one? + * What error messages do you see? + * When does this issue occur? Does it occur consistently? + * Do you know of any workarounds? + * What is the container host OS and version? + + - type: textarea + id: other-information + attributes: + label: Other information + + - type: textarea + id: docker-version + attributes: + label: Output of `docker version` + description: Paste the output of `docker version` here. + render: console + + - type: textarea + id: docker-info + attributes: + label: Output of `docker info` + description: Paste the output of `docker info` here. + render: console + + - type: markdown + attributes: + value: Thanks for taking the time to report this! From 4b944561d5ab69976acf26ae149c45461d6d28dc Mon Sep 17 00:00:00 2001 From: Logan Bussell Date: Mon, 3 Mar 2025 09:05:24 -0800 Subject: [PATCH 2/2] Updates from code review --- .github/ISSUE_TEMPLATE/bug-report.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index d6246bf7..73b6e835 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -8,10 +8,7 @@ body: 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. For general questions, consider posting to [Discussions](https://github.com/microsoft/dotnet-framework-docker/discussions) or [Stack Overflow](https://stackoverflow.com). - 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). - 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 secure@microsoft.com. - 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. --- - type: markdown