microsoft/mu_feature_ffa

Public

mirrored fromhttps://github.com/microsoft/mu_feature_ffaAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
3d4b142bc3f2df66be0148459e45a92d4a1edf2c

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.github/ISSUE_TEMPLATE/feature_request.yml

108lines ยท modecode

1# Project Mu GitHub Feature Request Template
2#
3# NOTE: This file is automatically synchronized from Mu DevOps. Update the original file there
4# instead of the file in this repo.
5#
6# - Mu DevOps Repo: https://github.com/microsoft/mu_devops
7# - File Sync Settings: https://github.com/microsoft/mu_devops/blob/main/.sync/Files.yml
8#
9# Copyright (c) Microsoft Corporation.
10# SPDX-License-Identifier: BSD-2-Clause-Patent
11#
12
13name: ๐Ÿš€ Feature Request
14description: Request a feature change
15title: "[Feature]: <title>"
16labels: ["type:feature-request", "state:needs-triage"]
17
18body:
19 - type: markdown
20 attributes:
21 value: |
22 ๐Ÿ‘‹ Thanks for taking the time to help us improve our features!
23
24 - type: textarea
25 id: feature_overview
26 attributes:
27 label: Feature Overview
28 description: Provide a high-level summary of your feature request.
29 validations:
30 required: true
31
32 - type: textarea
33 id: solution_overview
34 attributes:
35 label: Solution Overview
36 description: Give a clear and concise description of what you want to happen.
37 validations:
38 required: true
39
40 - type: textarea
41 id: alternatives_considered
42 attributes:
43 label: Alternatives Considered
44 description: Describe alternatives you've considered.
45 validations:
46 required: false
47
48 - type: markdown
49 attributes:
50 value: |
51 **Urgency Key**
52 - ๐ŸŸข **Low**
53 - A minor enhancement
54 - It is not important to address this request in a specific time frame
55 - ๐ŸŸก **Medium**
56 - An important enhancement
57 - Will be prioritized above *low* requests in the normal course of development
58 - ๐Ÿ”ฅ **High**
59 - A critical enhancement with significant value
60 - Should be prioritized above *low* and *medium* requests
61
62 - type: dropdown
63 id: urgency
64 attributes:
65 label: Urgency
66 description: How urgent is it to resolve this feature request?
67 multiple: false
68 options:
69 - Low
70 - Medium
71 - High
72 validations:
73 required: true
74
75 - type: dropdown
76 id: request_owner
77 attributes:
78 label: Are you going to implement the feature request?
79 description: Indicate if you are going to do the work to close this feature request.
80 multiple: false
81 options:
82 - I will implement the feature
83 - Someone else needs to implement the feature
84 validations:
85 required: true
86
87 - type: dropdown
88 id: needs_maintainer_feedback
89 attributes:
90 label: Do you need maintainer feedback?
91 description: Indicate if you would like a maintainer to provide feedback on this submission.
92 multiple: false
93 options:
94 - No maintainer feedback needed
95 - Maintainer feedback requested
96 validations:
97 required: true
98
99 - type: textarea
100 id: anything_else
101 attributes:
102 label: Anything else?
103 description: |
104 Links? References? Anything that will give us more context about the feature you are requesting.
105
106 Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
107 validations:
108 required: false
109