From bcaee40422753bcbd2a24353da5ca2ebbf1036dc Mon Sep 17 00:00:00 2001 From: Steve Lee Date: Wed, 7 Nov 2018 14:08:00 -0800 Subject: [PATCH 1/6] change default issue template to different categories --- .../Bug_Report.md} | 29 +++++++++---------- .github/ISSUE_TEMPLATE/Documentation_Issue.md | 10 +++++++ .github/ISSUE_TEMPLATE/Feature_Request.md | 16 ++++++++++ .github/ISSUE_TEMPLATE/Support_Question.md | 10 +++++++ .github/ISSUE_TEMPLATE/Windows_PowerShell.md | 12 ++++++++ 5 files changed, 62 insertions(+), 15 deletions(-) rename .github/{ISSUE_TEMPLATE.md => ISSUE_TEMPLATE/Bug_Report.md} (53%) create mode 100644 .github/ISSUE_TEMPLATE/Documentation_Issue.md create mode 100644 .github/ISSUE_TEMPLATE/Feature_Request.md create mode 100644 .github/ISSUE_TEMPLATE/Support_Question.md create mode 100644 .github/ISSUE_TEMPLATE/Windows_PowerShell.md diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE/Bug_Report.md similarity index 53% rename from .github/ISSUE_TEMPLATE.md rename to .github/ISSUE_TEMPLATE/Bug_Report.md index 51d3b8bdf71..b58476d1872 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE/Bug_Report.md @@ -1,46 +1,45 @@ +--- +name: Bug report 🐛 +about: Report errors or unexpected behavior 🤔 + +--- -Steps to reproduce ------------------- +# Steps to reproduce ```powershell ``` -Expected behavior ------------------ +# Expected behavior ```none ``` -Actual behavior ---------------- +# Actual behavior ```none ``` -Environment data ----------------- +# Environment data -```powershell -> $PSVersionTable +```none ``` diff --git a/.github/ISSUE_TEMPLATE/Documentation_Issue.md b/.github/ISSUE_TEMPLATE/Documentation_Issue.md new file mode 100644 index 00000000000..d00eaa16841 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/Documentation_Issue.md @@ -0,0 +1,10 @@ +--- +name: Documentation Issue 📚 +about: Issues regarding documentation within this repository. + +--- + +# Documentation Issue + +Please open documentation issues that is not specifically for documentation within the +PowerShell/PowerShell repo in the [PowerShell Docs](https://github.com/powershell/powershell-docs/issues) repo. diff --git a/.github/ISSUE_TEMPLATE/Feature_Request.md b/.github/ISSUE_TEMPLATE/Feature_Request.md new file mode 100644 index 00000000000..cd9e5144f66 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/Feature_Request.md @@ -0,0 +1,16 @@ +--- +name: Feature Request/Idea 🚀 +about: Suggest a new feature or improvement (this does not mean you have to implement it) + +--- + +# Summary of the new feature/enhancement + +A clear and concise description of what the problem is that the new feature would solve. +Try formulating it in user story style (if applicable): +'As a user I want X so that Y.' with X being the being the action and Y being the value of the action. + +# Proposed technical implementation details (optional) + +A clear and concise description of what you want to happen. +Consider providing an example PowerShell experience with expected result. diff --git a/.github/ISSUE_TEMPLATE/Support_Question.md b/.github/ISSUE_TEMPLATE/Support_Question.md new file mode 100644 index 00000000000..8f803f09368 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/Support_Question.md @@ -0,0 +1,10 @@ +--- +name: Support Question ❓ +about: If you have a question, you can try asking in the PowerShell Slack channel first. + +--- + +# Community Resources + +[Slack Community Chat](https://powershell.slack.com) - Interactive chat with other PowerShell enthusiasts +[PowerShell.org Forum](https://powershell.org/forums/) - Search or post new general PowerShell usage questions diff --git a/.github/ISSUE_TEMPLATE/Windows_PowerShell.md b/.github/ISSUE_TEMPLATE/Windows_PowerShell.md new file mode 100644 index 00000000000..9d0df6c65aa --- /dev/null +++ b/.github/ISSUE_TEMPLATE/Windows_PowerShell.md @@ -0,0 +1,12 @@ +--- +name: Windows PowerShell +about: Windows PowerShell issues/suggestions need to be reported to UserVoice + +--- + +# Windows PowerShell + +For Windows PowerShell 5.1 issues, suggestions, or feature requests please use the following link instead: +Windows PowerShell [UserVoice](https://windowsserver.uservoice.com/forums/301869-powershell) + +This repository is **ONLY** for PowerShell Core 6 issues. From 0dbd85b80a258867fcca71b329b743f8a0bd68be Mon Sep 17 00:00:00 2001 From: Steve Lee Date: Wed, 7 Nov 2018 17:17:40 -0800 Subject: [PATCH 2/6] address Andrew's feedback --- .github/ISSUE_TEMPLATE/Bug_Report.md | 3 +-- .github/ISSUE_TEMPLATE/Documentation_Issue.md | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/Bug_Report.md b/.github/ISSUE_TEMPLATE/Bug_Report.md index b58476d1872..d5809e24f8b 100644 --- a/.github/ISSUE_TEMPLATE/Bug_Report.md +++ b/.github/ISSUE_TEMPLATE/Bug_Report.md @@ -10,8 +10,7 @@ Windows PowerShell [UserVoice](https://windowsserver.uservoice.com/forums/301869 This repository is **ONLY** for PowerShell Core 6 issues. -- Make sure you are able to repro it on the latest released version. -You can install the latest version from https://github.com/PowerShell/PowerShell/releases +- Make sure you are able to repro it on the [latest released version](https://github.com/PowerShell/PowerShell/releases) - Search the existing issues. - Refer to the [FAQ](https://github.com/PowerShell/PowerShell/blob/master/docs/FAQ.md). - Refer to the [known issues](https://docs.microsoft.com/powershell/scripting/whats-new/known-issues-ps6?view=powershell-6). diff --git a/.github/ISSUE_TEMPLATE/Documentation_Issue.md b/.github/ISSUE_TEMPLATE/Documentation_Issue.md index d00eaa16841..4cb97fabbc7 100644 --- a/.github/ISSUE_TEMPLATE/Documentation_Issue.md +++ b/.github/ISSUE_TEMPLATE/Documentation_Issue.md @@ -6,5 +6,5 @@ about: Issues regarding documentation within this repository. # Documentation Issue -Please open documentation issues that is not specifically for documentation within the -PowerShell/PowerShell repo in the [PowerShell Docs](https://github.com/powershell/powershell-docs/issues) repo. +Please open documentation issues that are not specifically for documentation within the +PowerShell/PowerShell repository in the [PowerShell Docs](https://github.com/powershell/powershell-docs/issues) repository. From 6a7e35734ed0702925bbad37899e404831bc363a Mon Sep 17 00:00:00 2001 From: Joey Aiello Date: Wed, 14 Nov 2018 13:16:39 -0800 Subject: [PATCH 3/6] Update .github/ISSUE_TEMPLATE/Documentation_Issue.md Co-Authored-By: SteveL-MSFT --- .github/ISSUE_TEMPLATE/Documentation_Issue.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/Documentation_Issue.md b/.github/ISSUE_TEMPLATE/Documentation_Issue.md index 4cb97fabbc7..ca425d00a5f 100644 --- a/.github/ISSUE_TEMPLATE/Documentation_Issue.md +++ b/.github/ISSUE_TEMPLATE/Documentation_Issue.md @@ -1,6 +1,6 @@ --- name: Documentation Issue 📚 -about: Issues regarding documentation within this repository. +about: File issues regarding documentation within the [PowerShell-Docs](https://github.com/powershell/powershell-docs) repository --- From 5e1229f03d425cea7ddac42b856fb571225b6d76 Mon Sep 17 00:00:00 2001 From: Joey Aiello Date: Wed, 14 Nov 2018 14:18:40 -0800 Subject: [PATCH 4/6] Update .github/ISSUE_TEMPLATE/Support_Question.md Co-Authored-By: SteveL-MSFT --- .github/ISSUE_TEMPLATE/Support_Question.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/Support_Question.md b/.github/ISSUE_TEMPLATE/Support_Question.md index 8f803f09368..7caaa381473 100644 --- a/.github/ISSUE_TEMPLATE/Support_Question.md +++ b/.github/ISSUE_TEMPLATE/Support_Question.md @@ -1,6 +1,6 @@ --- name: Support Question ❓ -about: If you have a question, you can try asking in the PowerShell Slack channel first. +about: If you have a question, you can try asking in the PowerShell Slack channel first. If you need official support, refer to the [PowerShell Support Lifecycle](http://aka.ms/pslifecycle) --- From 4532c64a8936981d4f27b8b8b7b5d61ca62c5b84 Mon Sep 17 00:00:00 2001 From: Joey Aiello Date: Wed, 14 Nov 2018 14:18:58 -0800 Subject: [PATCH 5/6] Update .github/ISSUE_TEMPLATE/Support_Question.md Co-Authored-By: SteveL-MSFT --- .github/ISSUE_TEMPLATE/Support_Question.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/Support_Question.md b/.github/ISSUE_TEMPLATE/Support_Question.md index 7caaa381473..cebcec50302 100644 --- a/.github/ISSUE_TEMPLATE/Support_Question.md +++ b/.github/ISSUE_TEMPLATE/Support_Question.md @@ -4,7 +4,13 @@ about: If you have a question, you can try asking in the PowerShell Slack channe --- -# Community Resources +# Support Question + +## Official support + +[PowerShell Support Lifecycle](http://aka.ms/pslifecycle) + +## Community Resources [Slack Community Chat](https://powershell.slack.com) - Interactive chat with other PowerShell enthusiasts [PowerShell.org Forum](https://powershell.org/forums/) - Search or post new general PowerShell usage questions From 56eca1ab4960cabf4cb0c9e9aced647112b75a95 Mon Sep 17 00:00:00 2001 From: Joey Aiello Date: Wed, 14 Nov 2018 14:19:10 -0800 Subject: [PATCH 6/6] Update .github/ISSUE_TEMPLATE/Windows_PowerShell.md Co-Authored-By: SteveL-MSFT --- .github/ISSUE_TEMPLATE/Windows_PowerShell.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/Windows_PowerShell.md b/.github/ISSUE_TEMPLATE/Windows_PowerShell.md index 9d0df6c65aa..f69d94a0a4a 100644 --- a/.github/ISSUE_TEMPLATE/Windows_PowerShell.md +++ b/.github/ISSUE_TEMPLATE/Windows_PowerShell.md @@ -1,6 +1,6 @@ --- name: Windows PowerShell -about: Windows PowerShell issues/suggestions need to be reported to UserVoice +about: Windows PowerShell issues/suggestions need to be reported to [UserVoice](https://windowsserver.uservoice.com/forums/301869-powershell) ---