From 9ca3a5ee61c73ee235ec2242e807f71cc10bf4f8 Mon Sep 17 00:00:00 2001 From: Chris Glein <26607885+chrisglein@users.noreply.github.com> Date: Fri, 24 Sep 2021 15:45:45 -0700 Subject: [PATCH] Convert bug template issue template to an issue form (#5947) * Convert bug_report.md to issue form yaml * Fix empty title * Issue form title cannot be empty * Remove RNW commands * Replace old template * Add NuGet package version * Restore form order Move nuget package version before windows app type --- .github/ISSUE_TEMPLATE/bug_report.md | 74 ----------------------- .github/ISSUE_TEMPLATE/bug_report.yaml | 83 ++++++++++++++++++++++++++ 2 files changed, 83 insertions(+), 74 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yaml diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 7085f7dc3a..0000000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,74 +0,0 @@ ---- -name: Bug report -about: File a bug report -title: '' -labels: '' -assignees: '' - ---- - -**Describe the bug** - - - -**Steps to reproduce the bug** - -Steps to reproduce the behavior: -1. Go to '...' -2. Click on '....' - -**Expected behavior** - - -**Screenshots** - - -**Version Info** - - -NuGet package version: - - - -Windows app type: -| UWP | Win32 | -| :--------------- | :--------------- | -| | | - - -| Windows version | Saw the problem? | -| :--------------------------------- | :-------------------- | -| Insider Build (xxxxx) | | -| May 2021 Update (19043) | | -| October 2020 Update (19042) | | -| May 2020 Update (19041) | | -| November 2019 Update (18363) | | -| May 2019 Update (18362) | | -| October 2018 Update (17763) | | -| April 2018 Update (17134) | | -| Fall Creators Update (16299) | | -| Creators Update (15063) | | - - -| Device form factor | Saw the problem? | -| :----------------- | :--------------- | -| Desktop | | -| Xbox | | -| Surface Hub | | -| IoT | | - - -**Additional context** - diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml new file mode 100644 index 0000000000..aa89a5d515 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -0,0 +1,83 @@ +name: Bug report +description: File a bug report +title: "Bug title" +labels: [] +body: + - type: markdown + attributes: + value: | + For bugs related to UWP or the app models, please open a bug on the [Project Reunion repository](https://github.com/microsoft/ProjectReunion) + - type: textarea + validations: + required: true + attributes: + label: Describe the bug + description: Please enter a short, clear description of the bug. + - type: textarea + validations: + required: true + attributes: + label: Steps to reproduce the bug + description: Please provide any required setup and steps to reproduce the behavior. + placeholder: | + 1. Go to '...' + 2. Click on '....' + - type: textarea + attributes: + label: Expected behavior + description: Please provide a description of what you expected to happen + - type: textarea + attributes: + label: Screenshots + description: If applicable, add screenshots here to help explain your problem + - type: dropdown + attributes: + label: NuGet package version + options: + - "Microsoft.UI.Xaml 2.4.0" + - "Microsoft.UI.Xaml 2.5.0" + - "Microsoft.UI.Xaml.2.6.0-prerelease.210430001" + - "Microsoft.UI.Xaml 2.6.0" + - "Microsoft.WinUI 3.0.0-preview4.210210.4" + - "WinUI 3 - Project Reunion 0.5 Preview: 0.5.0-prerelease" + - "WinUI 3 - Project Reunion 0.5: 0.5.0" + - "WinUI 3 - Project Reunion 0.5: 0.5.7" + - "WinUI 3 - Project Reunion 0.8 Preview: 0.8.0-preview" + - "WinUI 3 - Windows App SDK 0.8: 0.8.0 (If you're seeing your issue in older previews of WinUI 3, please try this release)" + - type: checkboxes + attributes: + label: Windows app type + description: If you are using WinUI 3, please specify for which Windows app type you have encountered the issue. + options: + - label: "UWP" + - label: "Win32" + - type: dropdown + attributes: + label: Device form factor + description: Which device form factors did you see the issue on? + multiple: true + options: + - "Desktop" + - "Xbox" + - "Surface Hub" + - "IoT" + - type: dropdown + attributes: + label: Windows version + description: Which Windows versions did you see the issue on? + multiple: true + options: + - "Insider Build (xxxxx)" + - "May 2021 Update (19043)" + - "October 2020 Update (19042)" + - "May 2020 Update (19041)" + - "November 2019 Update (18363)" + - "May 2019 Update (18362)" + - "October 2018 Update (17763)" + - "April 2018 Update (17134)" + - "Fall Creators Update (16299)" + - "Creators Update (15063)" + - type: textarea + attributes: + label: Additional context + description: Enter any other applicable info here \ No newline at end of file