From 491a100d745a310c67ef3cae1314a983db3ebdc3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Amaury=20Lev=C3=A9?= Date: Sat, 8 Oct 2022 17:22:11 +0200 Subject: [PATCH] Update GitHub issues and PR templates (#1315) --- .github/ISSUE_TEMPLATE.md | 24 -------------- .github/ISSUE_TEMPLATE/bug-report.md | 33 ++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature-suggestion.md | 31 ++++++++++++++++++ .github/PULL_REQUEST_TEMPLATE.md | 4 +++ 4 files changed, 68 insertions(+), 24 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE.md create mode 100644 .github/ISSUE_TEMPLATE/bug-report.md create mode 100644 .github/ISSUE_TEMPLATE/feature-suggestion.md create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md deleted file mode 100644 index d8771c0f0..000000000 --- a/.github/ISSUE_TEMPLATE.md +++ /dev/null @@ -1,24 +0,0 @@ -## Description -> **IMPORTANT**: if the defect is reproduced only in a workflow from within the Visual Studio IDE then do not report the issue here - instead, please report it using Visual Studio's "Send Feedback" option that can be accessed from the Help menu OR using this link https://developercommunity.visualstudio.com. -> -> **IMPORTANT**: Before posting an issue, please search the repository for similar ones. It might have been solved or reported already. -> -> For a defect specific to the MSTest V2 test framework, describe the issue you've observed. - -## Steps to reproduce -> What steps can reproduce the defect? -> -> Please share the setup, sample project, target platform (desktop, core, uap) - -## Expected behavior -> Share the expected output - -## Actual behavior -> What is the behavior observed? - -## Environment -> Please share additional details about the test environment. -> - Operating system -> - Build version of vstest.console -> - Package version of MSTest framework and adapter -> - Other installed packages and their versions on the test project diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md new file mode 100644 index 000000000..ed2e1c33f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.md @@ -0,0 +1,33 @@ +--- +name: Bug report +about: Report a bug in MSTest. +labels: 'bug' +--- + +## Describe the bug + + + +## Steps To Reproduce + + + +## Expected behavior + +## Actual behavior + +## Additional context + + \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature-suggestion.md b/.github/ISSUE_TEMPLATE/feature-suggestion.md new file mode 100644 index 000000000..f56670cba --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-suggestion.md @@ -0,0 +1,31 @@ +--- +name: MSTest feature suggestion +about: Suggest a new feature +title: '' +labels: [feature-request] +--- + +## Summary + + + +## Background and Motivation + + + +## Proposed Feature + + + +## Alternative Designs + + \ No newline at end of file diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 000000000..574a5c038 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,4 @@ + \ No newline at end of file