diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 1bdcc56d20e..00000000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,84 +0,0 @@ ---- -name: Bug report -about: Create a report to help us fix something that isn't working as expected -title: '' -labels: "bug :bug:" -assignees: '' ---- - - - -## Describe the bug - -A clear and concise description of what the bug is. - -- [ ] Is this bug a regression in the toolkit? If so, what toolkit version did you last see it work: - -## Steps to Reproduce - -- [ ] Can this be reproduced in the Sample App? (Either in a sample as-is or with new XAML pasted in the editor.) If so, please provide custom XAML or steps to reproduce. If not, let us know why it can't be reproduced (e.g. more complex setup, environment, dependencies, etc...) - - - -Steps to reproduce the behavior: - -1. Given the following environment (Sample App w/ XAML, Project with Isolated setup, etc...) -2. Go to '...' -3. Click on '....' -4. Scroll down to '....' -5. See error - - - -## Expected behavior - - - -## Screenshots - - - -## Environment - - - -NuGet Package(s): - -Package Version(s): - -Windows 10 Build Number: - -- [ ] Fall Creators Update (16299) -- [ ] April 2018 Update (17134) -- [ ] October 2018 Update (17763) -- [ ] May 2019 Update (18362) -- [ ] May 2020 Update (19041) -- [ ] Insider Build ({build_number}) - -App min and target version: - -- [ ] Fall Creators Update (16299) -- [ ] April 2018 Update (17134) -- [ ] October 2018 Update (17763) -- [ ] May 2019 Update (18362) -- [ ] May 2020 Update (19041) -- [ ] Insider Build ({build_number}) - -Device form factor: - -- [ ] Desktop -- [ ] Xbox -- [ ] Surface Hub -- [ ] IoT - -Visual Studio version: - -- [ ] 2017 (15.{minor_version}) -- [ ] 2019 (16.{minor_version}) -- [ ] 2022 (17.{minor_version}) - -## Additional context - - diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 00000000000..6e3a7adf730 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,149 @@ +name: Bug report +description: Create a report to help us fix something that isn't working as expected +labels: "bug :bug:" +body: +- type: markdown + attributes: + value: | + ## Before you begin + 🚨 **Please do not skip instructions**🚨 + + This info is essential for investigating your bug report. Issues with missing information may be closed without investigation. + + If you're uncertain about the problem, find or start a [Questions & Help](https://github.com/CommunityToolkit/WindowsCommunityToolkit/discussions/categories/questions-help) discussion, where you can get insight from the community regarding your issue. + +- type: textarea + id: description + validations: + required: true + attributes: + label: Describe the bug + description: A clear and concise description of what the bug is. +- type: input + id: last-working-toolkit-version + attributes: + label: Regression + description: If this is a regression, what toolkit version did you last see it work? + placeholder: + validations: + required: false +- type: checkboxes + id: reproducable-in-sample-app + attributes: + label: Reproducible in sample app? + description: Can this be reproduced in the Sample App? (Either in a sample as-is or with new XAML pasted in the editor.) + options: + - label: This bug can be reproduced in the sample app. + required: false +- type: textarea + id: repro-steps + validations: + required: true + attributes: + label: Steps to reproduce + render: text + description: Provide steps to reproduce the issue, or let us know why it can't be reproduced (e.g. more complex setup, environment, dependencies, etc...) + placeholder: | + A repro from the sample app expidites the process of discovering, resolving, and validating bug fixes. + Provide code-snippets or XAML snippets as appropriate. + + Example repro steps: + 1. Given the following environment (Sample App w/ XAML, Project with Isolated setup, etc...) + 2. Go to '...' + 3. Click on '....' + 4. Scroll down to '....' + 5. See error +- type: textarea + id: expected-behavior + validations: + required: true + attributes: + label: Expected behavior + description: A clear and concise description of what you expected to happen. +- type: textarea + id: screenshots + attributes: + label: Screenshots + description: If applicable, add screenshots to help explain your problem. +- type: checkboxes + id: environment-windows-build + attributes: + label: Windows Build Number + description: Check one or more of the following options + options: + - label: Windows 10 1809 (Build 17763) + - label: Windows 10 1903 (Build 18362) + - label: Windows 10 1909 (Build 18363) + - label: Windows 10 2004 (Build 19041) + - label: Windows 10 20H2 (Build 19042) + - label: Windows 10 21H1 (Build 19043) + - label: Windows 11 21H2 (Build 22000) + - label: Other (specify) +- type: input + id: environment-windows-build-other-build-number + attributes: + label: Other Windows Build number + description: If applicable, another Windows build number not listed (such as an Insider build) +- type: checkboxes + id: environment-app-min-target-version + attributes: + label: App minimum and target SDK version + description: Check one or more of the following options + options: + - label: Windows 10, version 1809 (Build 17763) + - label: Windows 10, version 1903 (Build 18362) + - label: Windows 10, version 1909 (Build 18363) + - label: Windows 10, version 2004 (Build 19041) + - label: Other (specify) +- type: input + id: environment-app-min-target-other-build-number + attributes: + label: Other SDK version + description: If applicable, another SDK version not listed (such as an Insider SDK) +- type: dropdown + id: visual-studio-version + attributes: + multiple: true + label: Visual Studio Version + description: Check one or more of the following options + options: + - 2017 + - 2019 + - 2022 +- type: input + id: visual-studio-exact-build + attributes: + label: Visual Studio Build Number + description: What's the exact build number? (Found in Visual Studio under Help -> About Microsoft Visual Studio) +- type: dropdown + id: form-factor + attributes: + multiple: true + label: Device form factor + description: Check one or more of the following options + options: + - Desktop + - Xbox + - Surface Hub + - IoT +- type: textarea + id: nuget-packages + attributes: + label: Nuget packages + description: Which NuGet packages have you used? Include the version number. +- type: textarea + id: additional-context + attributes: + label: Additional context + description: Add any other context about the problem here. +- type: dropdown + id: contribution + validations: + required: true + attributes: + label: Help us help you + description: Would you like to contribute a solution to this issue? + options: + - Yes, I'd like to be assigned to work on this item. + - Yes, but only if others can assist. + - No. diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000000..4baa0d907e9 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,11 @@ +blank_issues_enabled: true +contact_links: + - name: Question + url: https://github.com/CommunityToolkit/WindowsCommunityToolkit/discussions/categories/questions-help + about: I have a question about how to use something in the toolkit. + - name: Documentation + url: https://github.com/MicrosoftDocs/WindowsCommunityToolkitDocs/issues/new + about: I have a documentation suggestion or question + - name: Win32 Controls + url: https://github.com/CommunityToolkit/Microsoft.Toolkit.Win32/issues/new + about: I have an issue with a Toolkit WPF or WinForms control diff --git a/.github/ISSUE_TEMPLATE/documentation.md b/.github/ISSUE_TEMPLATE/documentation.md deleted file mode 100644 index 1fd2f3c19d9..00000000000 --- a/.github/ISSUE_TEMPLATE/documentation.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -name: Documentation -about: I have a documentation suggestion or question -title: "[Docs]" -labels: documentation -assignees: '' ---- - - diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index 1ae67f23fbc..00000000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -name: Feature request -about: I have a new idea or improvement for the toolkit -title: "[Feature]" -labels: "feature request :mailbox_with_mail:" -assignees: '' ---- - - - -## Describe the problem this feature would solve - - - -## Describe the solution - - - -## Describe alternatives you've considered - - - -## Additional context & Screenshots - - diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 00000000000..5dada412c70 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,65 @@ +name: Feature request +description: Create a report to help us fix something that isn't working as expected +title: "[Feature]" +labels: "feature request :mailbox_with_mail:" +body: +- type: markdown + attributes: + value: | + ## Before you begin + 🚨 **Please do not skip instructions**🚨 + + This info is essential to help us understand your feature request. + + If you're uncertain about the feature, find or start an [Ideas](https://github.com/CommunityToolkit/WindowsCommunityToolkit/discussions/categories/ideas) discussion, where you can get insight from the community regarding your issue. + +- type: textarea + id: problem-description + validations: + required: true + attributes: + label: Describe the problem + description: Describe the problem this feature would solve. + placeholder: | + A clear and concise description of what the problem is, starting with the user story. + + Describe or link to any existing issues or discussions. + + Provide examples of the restrictions in the current environment that hinders the work your users or you want to perform. What are the ways this new feature will help transform and deliver those results + + For example, I am currently using the InfiniteCanvas control which lacks the TabbedCommandBar control feature. I am looking to improve user experience therefore i would like to use that in my project to provide ease of accessibility and a user-friendly interface. This new feature will provide quick access to the toolbar, enhance space utilization, etc [...] + +- type: textarea + id: solution-description + validations: + required: true + attributes: + label: Describe the solution + description: Describe the solution to the problem. + placeholder: | + A clear and concise description of what you want to happen. Define how do you think it will help the community and the value it adds to the toolkit. + +- type: textarea + id: alternatives + attributes: + label: Alternatives + description: Describe alternatives you've considered + placeholder: | + A clear and concise description of any alternative solutions or features you've considered. + +- type: textarea + id: additional-info + attributes: + label: Additional info + description: Add any other context or screenshots about the feature request here. + + +- type: dropdown + id: contribution + attributes: + label: Help us help you + description: Would you like to contribute a solution to this issue? + options: + - Yes, I'd like to be assigned to work on this item. + - Yes, but only if others can assist. + - No. diff --git a/.github/ISSUE_TEMPLATE/question.md b/.github/ISSUE_TEMPLATE/question.md deleted file mode 100644 index b10fd188db8..00000000000 --- a/.github/ISSUE_TEMPLATE/question.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -name: Question -about: I have a question about how to use something in the toolkit. -title: "[Question]" -labels: "question :grey_question:" -assignees: '' ---- - - diff --git a/.github/ISSUE_TEMPLATE/win32_controls.md b/.github/ISSUE_TEMPLATE/win32_controls.md deleted file mode 100644 index 483f2a772f0..00000000000 --- a/.github/ISSUE_TEMPLATE/win32_controls.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -name: Win32 Controls -about: I have an issue with a Toolkit WPF or WinForms control -title: "[Win32]" -labels: -assignees: '' ---- - -