From 0262b5e8813674da57e74fb824932c3cf455e075 Mon Sep 17 00:00:00 2001 From: Muhammad Rehan Saeed Date: Wed, 30 Jun 2021 09:58:11 +0100 Subject: [PATCH] Switch to .yml issue templates --- .github/ISSUE_TEMPLATE/BUG_REPORT.md | 32 ---------- .github/ISSUE_TEMPLATE/BUG_REPORT.yml | 61 +++++++++++++++++++ .github/ISSUE_TEMPLATE/FEATURE_REQUEST.md | 15 ----- .github/ISSUE_TEMPLATE/FEATURE_REQUEST.yml | 18 ++++++ .../.github/ISSUE_TEMPLATE/BUG_REPORT.md | 24 -------- .../.github/ISSUE_TEMPLATE/BUG_REPORT.yml | 30 +++++++++ .../.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md | 11 ---- .../ISSUE_TEMPLATE/FEATURE_REQUEST.yml | 11 ++++ Source/ApiTemplate/ApiTemplate.sln | 9 ++- .../.github/ISSUE_TEMPLATE/BUG_REPORT.md | 24 -------- .../.github/ISSUE_TEMPLATE/BUG_REPORT.yml | 30 +++++++++ .../.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md | 11 ---- .../ISSUE_TEMPLATE/FEATURE_REQUEST.yml | 11 ++++ Source/GraphQLTemplate/GraphQLTemplate.sln | 9 ++- .../.github/ISSUE_TEMPLATE/BUG_REPORT.md | 24 -------- .../.github/ISSUE_TEMPLATE/BUG_REPORT.yml | 30 +++++++++ .../.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md | 11 ---- .../ISSUE_TEMPLATE/FEATURE_REQUEST.yml | 11 ++++ Source/NuGetTemplate/NuGetTemplate.sln | 11 ++-- .../.github/ISSUE_TEMPLATE/BUG_REPORT.md | 24 -------- .../.github/ISSUE_TEMPLATE/BUG_REPORT.yml | 30 +++++++++ .../.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md | 11 ---- .../ISSUE_TEMPLATE/FEATURE_REQUEST.yml | 11 ++++ Source/OrleansTemplate/OrleansTemplate.sln | 9 ++- Templates.sln | 9 ++- 25 files changed, 264 insertions(+), 213 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/BUG_REPORT.md create mode 100644 .github/ISSUE_TEMPLATE/BUG_REPORT.yml delete mode 100644 .github/ISSUE_TEMPLATE/FEATURE_REQUEST.md create mode 100644 .github/ISSUE_TEMPLATE/FEATURE_REQUEST.yml delete mode 100644 Source/ApiTemplate/.github/ISSUE_TEMPLATE/BUG_REPORT.md create mode 100644 Source/ApiTemplate/.github/ISSUE_TEMPLATE/BUG_REPORT.yml delete mode 100644 Source/ApiTemplate/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md create mode 100644 Source/ApiTemplate/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.yml delete mode 100644 Source/GraphQLTemplate/.github/ISSUE_TEMPLATE/BUG_REPORT.md create mode 100644 Source/GraphQLTemplate/.github/ISSUE_TEMPLATE/BUG_REPORT.yml delete mode 100644 Source/GraphQLTemplate/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md create mode 100644 Source/GraphQLTemplate/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.yml delete mode 100644 Source/NuGetTemplate/.github/ISSUE_TEMPLATE/BUG_REPORT.md create mode 100644 Source/NuGetTemplate/.github/ISSUE_TEMPLATE/BUG_REPORT.yml delete mode 100644 Source/NuGetTemplate/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md create mode 100644 Source/NuGetTemplate/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.yml delete mode 100644 Source/OrleansTemplate/.github/ISSUE_TEMPLATE/BUG_REPORT.md create mode 100644 Source/OrleansTemplate/.github/ISSUE_TEMPLATE/BUG_REPORT.yml delete mode 100644 Source/OrleansTemplate/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md create mode 100644 Source/OrleansTemplate/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.yml diff --git a/.github/ISSUE_TEMPLATE/BUG_REPORT.md b/.github/ISSUE_TEMPLATE/BUG_REPORT.md deleted file mode 100644 index 9af24a4a7..000000000 --- a/.github/ISSUE_TEMPLATE/BUG_REPORT.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -name: Bug Report -about: Create a report to help us improve -title: '' -labels: bug -assignees: '' ---- - -### Describe the bug - -A clear and concise description of what the bug is. - -### To Reproduce - -A link to some code to reproduce the bug can speed up a fix. Alternatively, show steps to reproduce the behaviour: - -1. Go to '...' -2. Click on '....' -3. Scroll down to '....' -4. See error - -### Expected behaviour - -A clear and concise description of what you expected to happen. - -### Project template - -Which project template and project template version is the issue about? - -## Environment - -Which version of Visual Studio and the dotnet SDK were you using? diff --git a/.github/ISSUE_TEMPLATE/BUG_REPORT.yml b/.github/ISSUE_TEMPLATE/BUG_REPORT.yml new file mode 100644 index 000000000..f4faf493d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/BUG_REPORT.yml @@ -0,0 +1,61 @@ +name: "Bug Report" +description: "Create a report to help us improve" +labels: [bug] +body: + - type: textarea + id: describe-the-bug + attributes: + label: "Describe the bug" + description: "A clear and concise description of what the bug is." + validations: + required: true + - type: textarea + id: steps-to-reproduce + attributes: + label: "Steps to reproduce" + description: "A link to some code to reproduce the bug can speed up a fix. Alternatively, show steps to reproduce the behaviour." + placeholder: | + 1. Go to '...' + 2. Click on '....' + 3. Scroll down to '....' + 4. See error + validations: + required: true + - type: textarea + id: expected-behaviour + attributes: + label: "Expected behaviour" + description: "A clear and concise description of what you expected to happen." + validations: + required: true + - type: input + id: project-template + attributes: + label: "Project Template" + description: "Which project template and project template version is the issue about?" + validations: + required: true + - type: input + id: dotnet-boxed-version + attributes: + label: ".NET Boxed Version" + description: "Which version of .NET Boxed are you using?" + placeholder: "Latest" + validations: + required: true + - type: input + id: visual-studio-version + attributes: + label: "Visual Studio Version" + description: "Which version of Visual Studio are you using?" + placeholder: "Visual Studio 2022" + validations: + required: true + - type: input + id: dotnet-version + attributes: + label: ".NET Version" + description: "Which version of the .NET SDK are you using?" + placeholder: ".NET 6" + validations: + required: true diff --git a/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md b/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md deleted file mode 100644 index e8ae5b48c..000000000 --- a/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -name: Feature Request -about: Suggest an idea for this project -title: '' -labels: enhancement -assignees: '' ---- - -### Describe the feature - -A clear and concise description of what the feature is. - -### Project template - -Which project template and project template version is the issue about? diff --git a/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.yml b/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.yml new file mode 100644 index 000000000..46b743358 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.yml @@ -0,0 +1,18 @@ +name: "Feature Request" +description: "Suggest an idea for this project" +labels: [enhancement] +body: + - type: textarea + id: describe-the-bug + attributes: + label: "Describe the feature" + description: "A clear and concise description of what the feature is." + validations: + required: true + - type: input + id: project-template + attributes: + label: "Project Template" + description: "Which project template and project template version is the issue about?" + validations: + required: true diff --git a/Source/ApiTemplate/.github/ISSUE_TEMPLATE/BUG_REPORT.md b/Source/ApiTemplate/.github/ISSUE_TEMPLATE/BUG_REPORT.md deleted file mode 100644 index 9bdcd1c73..000000000 --- a/Source/ApiTemplate/.github/ISSUE_TEMPLATE/BUG_REPORT.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -name: Bug Report -about: Create a report to help us improve -title: '' -labels: bug -assignees: '' ---- - -### Describe the bug - -A clear and concise description of what the bug is. - -### To Reproduce - -A link to some code to reproduce the bug can speed up a fix. Alternatively, show steps to reproduce the behaviour: - -1. Go to '...' -2. Click on '....' -3. Scroll down to '....' -4. See error - -### Expected behaviour - -A clear and concise description of what you expected to happen. diff --git a/Source/ApiTemplate/.github/ISSUE_TEMPLATE/BUG_REPORT.yml b/Source/ApiTemplate/.github/ISSUE_TEMPLATE/BUG_REPORT.yml new file mode 100644 index 000000000..8a6e63d2b --- /dev/null +++ b/Source/ApiTemplate/.github/ISSUE_TEMPLATE/BUG_REPORT.yml @@ -0,0 +1,30 @@ +name: "Bug Report" +description: "Create a report to help us improve" +labels: [bug] +body: + - type: textarea + id: describe-the-bug + attributes: + label: "Describe the bug" + description: "A clear and concise description of what the bug is." + validations: + required: true + - type: textarea + id: steps-to-reproduce + attributes: + label: "Steps to reproduce" + description: "A link to some code to reproduce the bug can speed up a fix. Alternatively, show steps to reproduce the behaviour." + placeholder: | + 1. Go to '...' + 2. Click on '....' + 3. Scroll down to '....' + 4. See error + validations: + required: true + - type: textarea + id: expected-behaviour + attributes: + label: "Expected behaviour" + description: "A clear and concise description of what you expected to happen." + validations: + required: true diff --git a/Source/ApiTemplate/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md b/Source/ApiTemplate/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md deleted file mode 100644 index 90ce86044..000000000 --- a/Source/ApiTemplate/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -name: Feature Request -about: Suggest an idea for this project -title: '' -labels: enhancement -assignees: '' ---- - -### Describe the feature - -A clear and concise description of what the feature is. diff --git a/Source/ApiTemplate/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.yml b/Source/ApiTemplate/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.yml new file mode 100644 index 000000000..3812e65bb --- /dev/null +++ b/Source/ApiTemplate/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.yml @@ -0,0 +1,11 @@ +name: "Feature Request" +description: "Suggest an idea for this project" +labels: [enhancement] +body: + - type: textarea + id: describe-the-bug + attributes: + label: "Describe the feature" + description: "A clear and concise description of what the feature is." + validations: + required: true diff --git a/Source/ApiTemplate/ApiTemplate.sln b/Source/ApiTemplate/ApiTemplate.sln index c64a6e052..615f56bb0 100644 --- a/Source/ApiTemplate/ApiTemplate.sln +++ b/Source/ApiTemplate/ApiTemplate.sln @@ -1,7 +1,7 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 16 -VisualStudioVersion = 16.0.28803.202 +# Visual Studio Version 17 +VisualStudioVersion = 17.0.31423.177 MinimumVisualStudioVersion = 10.0.40219.1 Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Source", "Source", "{57BAE1BC-D418-4A95-B292-C0E9324B0A54}" EndProject @@ -58,9 +58,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".github", ".github", "{E542 EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ISSUE_TEMPLATE", "ISSUE_TEMPLATE", "{5C84BC3D-BEFC-4CC2-85B8-C3C4E286368A}" ProjectSection(SolutionItems) = preProject - .github\ISSUE_TEMPLATE\BUG_REPORT.md = .github\ISSUE_TEMPLATE\BUG_REPORT.md - .github\ISSUE_TEMPLATE\FEATURE_REQUEST.md = .github\ISSUE_TEMPLATE\FEATURE_REQUEST.md - .github\ISSUE_TEMPLATE\QUESTION.md = .github\ISSUE_TEMPLATE\QUESTION.md + .github\ISSUE_TEMPLATE\BUG_REPORT.yml = .github\ISSUE_TEMPLATE\BUG_REPORT.yml + .github\ISSUE_TEMPLATE\FEATURE_REQUEST.yml = .github\ISSUE_TEMPLATE\FEATURE_REQUEST.yml EndProjectSection EndProject Global diff --git a/Source/GraphQLTemplate/.github/ISSUE_TEMPLATE/BUG_REPORT.md b/Source/GraphQLTemplate/.github/ISSUE_TEMPLATE/BUG_REPORT.md deleted file mode 100644 index 9bdcd1c73..000000000 --- a/Source/GraphQLTemplate/.github/ISSUE_TEMPLATE/BUG_REPORT.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -name: Bug Report -about: Create a report to help us improve -title: '' -labels: bug -assignees: '' ---- - -### Describe the bug - -A clear and concise description of what the bug is. - -### To Reproduce - -A link to some code to reproduce the bug can speed up a fix. Alternatively, show steps to reproduce the behaviour: - -1. Go to '...' -2. Click on '....' -3. Scroll down to '....' -4. See error - -### Expected behaviour - -A clear and concise description of what you expected to happen. diff --git a/Source/GraphQLTemplate/.github/ISSUE_TEMPLATE/BUG_REPORT.yml b/Source/GraphQLTemplate/.github/ISSUE_TEMPLATE/BUG_REPORT.yml new file mode 100644 index 000000000..8a6e63d2b --- /dev/null +++ b/Source/GraphQLTemplate/.github/ISSUE_TEMPLATE/BUG_REPORT.yml @@ -0,0 +1,30 @@ +name: "Bug Report" +description: "Create a report to help us improve" +labels: [bug] +body: + - type: textarea + id: describe-the-bug + attributes: + label: "Describe the bug" + description: "A clear and concise description of what the bug is." + validations: + required: true + - type: textarea + id: steps-to-reproduce + attributes: + label: "Steps to reproduce" + description: "A link to some code to reproduce the bug can speed up a fix. Alternatively, show steps to reproduce the behaviour." + placeholder: | + 1. Go to '...' + 2. Click on '....' + 3. Scroll down to '....' + 4. See error + validations: + required: true + - type: textarea + id: expected-behaviour + attributes: + label: "Expected behaviour" + description: "A clear and concise description of what you expected to happen." + validations: + required: true diff --git a/Source/GraphQLTemplate/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md b/Source/GraphQLTemplate/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md deleted file mode 100644 index 90ce86044..000000000 --- a/Source/GraphQLTemplate/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -name: Feature Request -about: Suggest an idea for this project -title: '' -labels: enhancement -assignees: '' ---- - -### Describe the feature - -A clear and concise description of what the feature is. diff --git a/Source/GraphQLTemplate/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.yml b/Source/GraphQLTemplate/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.yml new file mode 100644 index 000000000..3812e65bb --- /dev/null +++ b/Source/GraphQLTemplate/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.yml @@ -0,0 +1,11 @@ +name: "Feature Request" +description: "Suggest an idea for this project" +labels: [enhancement] +body: + - type: textarea + id: describe-the-bug + attributes: + label: "Describe the feature" + description: "A clear and concise description of what the feature is." + validations: + required: true diff --git a/Source/GraphQLTemplate/GraphQLTemplate.sln b/Source/GraphQLTemplate/GraphQLTemplate.sln index 9b919f980..9d94da1e4 100644 --- a/Source/GraphQLTemplate/GraphQLTemplate.sln +++ b/Source/GraphQLTemplate/GraphQLTemplate.sln @@ -1,7 +1,7 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 16 -VisualStudioVersion = 16.0.28803.202 +# Visual Studio Version 17 +VisualStudioVersion = 17.0.31423.177 MinimumVisualStudioVersion = 10.0.40219.1 Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Source", "Source", "{57BAE1BC-D418-4A95-B292-C0E9324B0A54}" EndProject @@ -58,9 +58,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".github", ".github", "{3920 EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ISSUE_TEMPLATE", "ISSUE_TEMPLATE", "{623ED17E-E051-4F69-A3BF-3D362A3A3735}" ProjectSection(SolutionItems) = preProject - .github\ISSUE_TEMPLATE\BUG_REPORT.md = .github\ISSUE_TEMPLATE\BUG_REPORT.md - .github\ISSUE_TEMPLATE\FEATURE_REQUEST.md = .github\ISSUE_TEMPLATE\FEATURE_REQUEST.md - .github\ISSUE_TEMPLATE\QUESTION.md = .github\ISSUE_TEMPLATE\QUESTION.md + .github\ISSUE_TEMPLATE\BUG_REPORT.yml = .github\ISSUE_TEMPLATE\BUG_REPORT.yml + .github\ISSUE_TEMPLATE\FEATURE_REQUEST.yml = .github\ISSUE_TEMPLATE\FEATURE_REQUEST.yml EndProjectSection EndProject Global diff --git a/Source/NuGetTemplate/.github/ISSUE_TEMPLATE/BUG_REPORT.md b/Source/NuGetTemplate/.github/ISSUE_TEMPLATE/BUG_REPORT.md deleted file mode 100644 index 9bdcd1c73..000000000 --- a/Source/NuGetTemplate/.github/ISSUE_TEMPLATE/BUG_REPORT.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -name: Bug Report -about: Create a report to help us improve -title: '' -labels: bug -assignees: '' ---- - -### Describe the bug - -A clear and concise description of what the bug is. - -### To Reproduce - -A link to some code to reproduce the bug can speed up a fix. Alternatively, show steps to reproduce the behaviour: - -1. Go to '...' -2. Click on '....' -3. Scroll down to '....' -4. See error - -### Expected behaviour - -A clear and concise description of what you expected to happen. diff --git a/Source/NuGetTemplate/.github/ISSUE_TEMPLATE/BUG_REPORT.yml b/Source/NuGetTemplate/.github/ISSUE_TEMPLATE/BUG_REPORT.yml new file mode 100644 index 000000000..8a6e63d2b --- /dev/null +++ b/Source/NuGetTemplate/.github/ISSUE_TEMPLATE/BUG_REPORT.yml @@ -0,0 +1,30 @@ +name: "Bug Report" +description: "Create a report to help us improve" +labels: [bug] +body: + - type: textarea + id: describe-the-bug + attributes: + label: "Describe the bug" + description: "A clear and concise description of what the bug is." + validations: + required: true + - type: textarea + id: steps-to-reproduce + attributes: + label: "Steps to reproduce" + description: "A link to some code to reproduce the bug can speed up a fix. Alternatively, show steps to reproduce the behaviour." + placeholder: | + 1. Go to '...' + 2. Click on '....' + 3. Scroll down to '....' + 4. See error + validations: + required: true + - type: textarea + id: expected-behaviour + attributes: + label: "Expected behaviour" + description: "A clear and concise description of what you expected to happen." + validations: + required: true diff --git a/Source/NuGetTemplate/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md b/Source/NuGetTemplate/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md deleted file mode 100644 index 90ce86044..000000000 --- a/Source/NuGetTemplate/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -name: Feature Request -about: Suggest an idea for this project -title: '' -labels: enhancement -assignees: '' ---- - -### Describe the feature - -A clear and concise description of what the feature is. diff --git a/Source/NuGetTemplate/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.yml b/Source/NuGetTemplate/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.yml new file mode 100644 index 000000000..3812e65bb --- /dev/null +++ b/Source/NuGetTemplate/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.yml @@ -0,0 +1,11 @@ +name: "Feature Request" +description: "Suggest an idea for this project" +labels: [enhancement] +body: + - type: textarea + id: describe-the-bug + attributes: + label: "Describe the feature" + description: "A clear and concise description of what the feature is." + validations: + required: true diff --git a/Source/NuGetTemplate/NuGetTemplate.sln b/Source/NuGetTemplate/NuGetTemplate.sln index e00690d02..dbc2d1ada 100644 --- a/Source/NuGetTemplate/NuGetTemplate.sln +++ b/Source/NuGetTemplate/NuGetTemplate.sln @@ -1,7 +1,7 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 16 -VisualStudioVersion = 16.0.28803.352 +# Visual Studio Version 17 +VisualStudioVersion = 17.0.31423.177 MinimumVisualStudioVersion = 10.0.40219.1 Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Source", "Source", "{719809C2-A551-4C4A-9EFD-B10FB5E35BC0}" ProjectSection(SolutionItems) = preProject @@ -42,11 +42,10 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Images", "Images", "{26F71F Images\Icon.png = Images\Icon.png EndProjectSection EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Issue Templates", "Issue Templates", "{566DF0E2-1288-4083-9B55-4C8B69BB1432}" +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ISSUE_TEMPLATE", "ISSUE_TEMPLATE", "{566DF0E2-1288-4083-9B55-4C8B69BB1432}" ProjectSection(SolutionItems) = preProject - .github\ISSUE_TEMPLATE\BUG_REPORT.md = .github\ISSUE_TEMPLATE\BUG_REPORT.md - .github\ISSUE_TEMPLATE\FEATURE_REQUEST.md = .github\ISSUE_TEMPLATE\FEATURE_REQUEST.md - .github\ISSUE_TEMPLATE\QUESTION.md = .github\ISSUE_TEMPLATE\QUESTION.md + .github\ISSUE_TEMPLATE\BUG_REPORT.yml = .github\ISSUE_TEMPLATE\BUG_REPORT.yml + .github\ISSUE_TEMPLATE\FEATURE_REQUEST.yml = .github\ISSUE_TEMPLATE\FEATURE_REQUEST.yml EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".github", ".github", "{0555C737-CE4B-4C78-87AB-6296E1E32D01}" diff --git a/Source/OrleansTemplate/.github/ISSUE_TEMPLATE/BUG_REPORT.md b/Source/OrleansTemplate/.github/ISSUE_TEMPLATE/BUG_REPORT.md deleted file mode 100644 index 9bdcd1c73..000000000 --- a/Source/OrleansTemplate/.github/ISSUE_TEMPLATE/BUG_REPORT.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -name: Bug Report -about: Create a report to help us improve -title: '' -labels: bug -assignees: '' ---- - -### Describe the bug - -A clear and concise description of what the bug is. - -### To Reproduce - -A link to some code to reproduce the bug can speed up a fix. Alternatively, show steps to reproduce the behaviour: - -1. Go to '...' -2. Click on '....' -3. Scroll down to '....' -4. See error - -### Expected behaviour - -A clear and concise description of what you expected to happen. diff --git a/Source/OrleansTemplate/.github/ISSUE_TEMPLATE/BUG_REPORT.yml b/Source/OrleansTemplate/.github/ISSUE_TEMPLATE/BUG_REPORT.yml new file mode 100644 index 000000000..8a6e63d2b --- /dev/null +++ b/Source/OrleansTemplate/.github/ISSUE_TEMPLATE/BUG_REPORT.yml @@ -0,0 +1,30 @@ +name: "Bug Report" +description: "Create a report to help us improve" +labels: [bug] +body: + - type: textarea + id: describe-the-bug + attributes: + label: "Describe the bug" + description: "A clear and concise description of what the bug is." + validations: + required: true + - type: textarea + id: steps-to-reproduce + attributes: + label: "Steps to reproduce" + description: "A link to some code to reproduce the bug can speed up a fix. Alternatively, show steps to reproduce the behaviour." + placeholder: | + 1. Go to '...' + 2. Click on '....' + 3. Scroll down to '....' + 4. See error + validations: + required: true + - type: textarea + id: expected-behaviour + attributes: + label: "Expected behaviour" + description: "A clear and concise description of what you expected to happen." + validations: + required: true diff --git a/Source/OrleansTemplate/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md b/Source/OrleansTemplate/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md deleted file mode 100644 index 90ce86044..000000000 --- a/Source/OrleansTemplate/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -name: Feature Request -about: Suggest an idea for this project -title: '' -labels: enhancement -assignees: '' ---- - -### Describe the feature - -A clear and concise description of what the feature is. diff --git a/Source/OrleansTemplate/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.yml b/Source/OrleansTemplate/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.yml new file mode 100644 index 000000000..3812e65bb --- /dev/null +++ b/Source/OrleansTemplate/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.yml @@ -0,0 +1,11 @@ +name: "Feature Request" +description: "Suggest an idea for this project" +labels: [enhancement] +body: + - type: textarea + id: describe-the-bug + attributes: + label: "Describe the feature" + description: "A clear and concise description of what the feature is." + validations: + required: true diff --git a/Source/OrleansTemplate/OrleansTemplate.sln b/Source/OrleansTemplate/OrleansTemplate.sln index 9a4c8bdd1..621bbf2fd 100644 --- a/Source/OrleansTemplate/OrleansTemplate.sln +++ b/Source/OrleansTemplate/OrleansTemplate.sln @@ -1,7 +1,7 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 16 -VisualStudioVersion = 16.0.28803.202 +# Visual Studio Version 17 +VisualStudioVersion = 17.0.31423.177 MinimumVisualStudioVersion = 10.0.40219.1 Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Source", "Source", "{57BAE1BC-D418-4A95-B292-C0E9324B0A54}" EndProject @@ -64,9 +64,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".github", ".github", "{90F1 EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ISSUE_TEMPLATE", "ISSUE_TEMPLATE", "{90110DBA-335A-4A7A-AD43-48CB1A15346D}" ProjectSection(SolutionItems) = preProject - .github\ISSUE_TEMPLATE\BUG_REPORT.md = .github\ISSUE_TEMPLATE\BUG_REPORT.md - .github\ISSUE_TEMPLATE\FEATURE_REQUEST.md = .github\ISSUE_TEMPLATE\FEATURE_REQUEST.md - .github\ISSUE_TEMPLATE\QUESTION.md = .github\ISSUE_TEMPLATE\QUESTION.md + .github\ISSUE_TEMPLATE\BUG_REPORT.yml = .github\ISSUE_TEMPLATE\BUG_REPORT.yml + .github\ISSUE_TEMPLATE\FEATURE_REQUEST.yml = .github\ISSUE_TEMPLATE\FEATURE_REQUEST.yml EndProjectSection EndProject Global diff --git a/Templates.sln b/Templates.sln index dbb1fa9e3..20b004288 100644 --- a/Templates.sln +++ b/Templates.sln @@ -1,7 +1,7 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 16 -VisualStudioVersion = 16.0.28803.352 +# Visual Studio Version 17 +VisualStudioVersion = 17.0.31423.177 MinimumVisualStudioVersion = 10.0.40219.1 Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Source", "Source", "{4CE320D7-3C4E-4E1F-8E51-411684C7CE2A}" EndProject @@ -101,9 +101,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Boxed.Templates", "Source\B EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ISSUE_TEMPLATE", "ISSUE_TEMPLATE", "{EC645147-507B-4210-9152-5159DBC8A062}" ProjectSection(SolutionItems) = preProject - .github\ISSUE_TEMPLATE\BUG_REPORT.md = .github\ISSUE_TEMPLATE\BUG_REPORT.md - .github\ISSUE_TEMPLATE\FEATURE_REQUEST.md = .github\ISSUE_TEMPLATE\FEATURE_REQUEST.md - .github\ISSUE_TEMPLATE\QUESTION.md = .github\ISSUE_TEMPLATE\QUESTION.md + .github\ISSUE_TEMPLATE\BUG_REPORT.yml = .github\ISSUE_TEMPLATE\BUG_REPORT.yml + .github\ISSUE_TEMPLATE\FEATURE_REQUEST.yml = .github\ISSUE_TEMPLATE\FEATURE_REQUEST.yml EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".github", ".github", "{BF3053CB-9A64-4062-A69F-C67D0A2C2902}"