From 3ae5135f67441b96332d1c43802dec627d6fbcc8 Mon Sep 17 00:00:00 2001 From: Clint Rutkas Date: Wed, 24 Mar 2021 09:03:30 -0700 Subject: [PATCH] GitHub issue template (#10401) * Create bug_report.yml adding in yml version for bug report * Update bug_report.yml * Update bug_report.yml * Delete bug_report.md * Update .github/ISSUE_TEMPLATE/bug_report.yml Co-authored-by: Enrico Giordani * Update .github/ISSUE_TEMPLATE/bug_report.yml Co-authored-by: Enrico Giordani * Update .github/ISSUE_TEMPLATE/bug_report.yml Co-authored-by: htcfreek <61519853+htcfreek@users.noreply.github.com> Co-authored-by: Enrico Giordani Co-authored-by: htcfreek <61519853+htcfreek@users.noreply.github.com> --- .github/ISSUE_TEMPLATE/bug_report.md | 38 ------------ .github/ISSUE_TEMPLATE/bug_report.yml | 88 +++++++++++++++++++++++++++ 2 files changed, 88 insertions(+), 38 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 d57626f44..000000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -name: 🐛 Bug report -about: Report errors or unexpected behavior -title: '' -labels: Issue-Bug,Triage-Needed -assignees: '' - ---- - - - -## ℹ Computer information - -- PowerToys version: -- PowerToy Utility: -- Running PowerToys as Admin: -- Windows build number: [run "winver"] - -## 📝 Provide detailed reproduction steps (if any) - -1. … -2. … -3. … - -### ✔️ Expected result - -_What is the expected result of the above steps?_ - -### ❌ Actual result - -_What is the actual result of the above steps?_ - -## 📷 Screenshots - -_Are there any useful screenshots? WinKey+Shift+S and then just paste them directly into the form_ diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 000000000..8386111b5 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,88 @@ +name: "Bug report 🐛" +description: Report errors or unexpected behavior +title: '' +labels: +- Issue-Bug +- Triage-Needed +assignees: '' +issue_body: true +body: +- type: markdown + attributes: + value: | + Please make sure to [search for existing issues](https://github.com/microsoft/PowerTOys/issues) before filing a new one! + +- type: input + attributes: + label: Microsoft PowerToys version + placeholder: "0.33.1" + description: | + Hover over system tray icon or look at Settings + validations: + required: true + +- type: dropdown + attributes: + label: Running as admin + options: + - 'Yes' + - 'No' + validations: + required: true + +- type: dropdown + attributes: + label: Utility with issue? + multiple: true + options: + - General + - ColorPicker + - FancyZones + - FancyZones Editor + - Image Resizer + - Keyboard Manager + - MD Preview + - PowerRename + - PowerToys Run + - Shortcut Guide + - SVG Preview + - SVG Thumbnail + - Installer + - System tray interaction + - Settings window + validations: + required: true + +- type: textarea + attributes: + label: Other Software + description: If you're reporting a bug about our interaction with other software, what software? What versions? + placeholder: | + vim 8.2 (inside WSL) + OpenSSH_for_Windows_8.1p1 + My Cool Application v0.3 (include a code snippet if it would help!) + validations: + required: false + +- type: textarea + attributes: + label: Steps to reproduce + placeholder: Tell us the steps required to trigger your bug. + validations: + required: true + +- type: textarea + attributes: + label: ✔️ Expected Behavior + description: If you want to include screenshots, paste them into the markdown editor below the form or follow up with a separate comment. + placeholder: What were you expecting? + validations: + required: false + +- type: textarea + attributes: + label: ❌ Actual Behavior + description: If you want to include screenshots, paste them into the markdown editor below the form or follow up with a separate comment. + placeholder: What happened instead? + validations: + required: true