From b2a415f04e6fb73df6f456122059c90454999163 Mon Sep 17 00:00:00 2001 From: Gladwin Johnson <90415114+gladjohn@users.noreply.github.com> Date: Fri, 28 Jul 2023 09:30:15 -0700 Subject: [PATCH] New Feature request template (#4250) * Create feature_request.yaml * Delete feature_request.md * Update .github/ISSUE_TEMPLATE/feature_request.yaml Co-authored-by: Bogdan Gavril * Apply suggestions from code review Co-authored-by: Den Delimarsky <53200638+localden@users.noreply.github.com> * Update feature_request.yaml * Update feature_request.yaml * Update feature_request.yaml * Update .github/ISSUE_TEMPLATE/feature_request.yaml Co-authored-by: Ray Luo --------- Co-authored-by: Bogdan Gavril Co-authored-by: Den Delimarsky <53200638+localden@users.noreply.github.com> Co-authored-by: Ray Luo --- .github/ISSUE_TEMPLATE/feature_request.md | 21 --------- .github/ISSUE_TEMPLATE/feature_request.yaml | 48 +++++++++++++++++++++ 2 files changed, 48 insertions(+), 21 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.yaml diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index c281463377..0000000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -name: Feature request -about: Suggest an idea for this project. -title: "[Feature Request] " -labels: Feature Request -assignees: '' - ---- -_Make sure that your question or issue is not already covered in [MSAL docs](https://learn.microsoft.com/en-us/entra/msal/dotnet/) or [samples](https://learn.microsoft.com/en-us/azure/active-directory/develop/sample-v2-code?tabs=apptype)._ - -**Is your feature request related to a problem? Please describe.** -A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] - -**Describe the solution you'd like** -A clear and concise description of what you want to happen. - -**Describe alternatives you've considered** -A clear and concise description of any alternative solutions or features you've considered. - -**Additional context** -Add any other context or screenshots about the feature request here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.yaml b/.github/ISSUE_TEMPLATE/feature_request.yaml new file mode 100644 index 0000000000..3ecb40277f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yaml @@ -0,0 +1,48 @@ +name: Feature request +description: Suggest a new feature for MSAL.NET. +labels: ["feature request", "untriaged", "needs attention"] +title : '[Feature Request] ' +body: +- type: markdown + attributes: + value: | + ## Before submitting your feature request + Please make sure that your question or issue is not already covered in [MSAL documentation](https://learn.microsoft.com/entra/msal/dotnet/) or [samples](https://learn.microsoft.com/azure/active-directory/develop/sample-v2-code?tabs=apptype). + +- type: markdown + attributes: + value: | + ## Feature request for MSAL.NET + +- type: dropdown + attributes: + label: MSAL client type + description: Are you using PublicClientApplication (desktop and mobile apps), ConfidentialClientApplication (web apps, web APIs, service-to-service) or ManagedIdentityApplication? + multiple: true + options: + - "Public" + - "Confidential" + - "Managed identity" + validations: + required: true + +- type: textarea + attributes: + label: Problem Statement + description: "Describe the problem or context for this feature request." + validations: + required: true + +- type: textarea + attributes: + label: Proposed solution + description: "Describe the solution you'd like." + validations: + required: false + +- type: textarea + attributes: + label: Alternatives + description: "Describe alternatives you've considered." + validations: + required: false