microsoft/mu_feature_ffa
Publicmirrored fromhttps://github.com/microsoft/mu_feature_ffaAvailable
.github/ISSUE_TEMPLATE/bug_report.yml
155lines ยท modecode
| 1 | # Project Mu GitHub Bug Report 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 | |
| 13 | name: ๐ Bug Report |
| 14 | description: File a bug report |
| 15 | title: "[Bug]: <title>" |
| 16 | labels: ["type:bug", "state:needs-triage"] |
| 17 | |
| 18 | body: |
| 19 | - type: markdown |
| 20 | attributes: |
| 21 | value: | |
| 22 | ๐ Thanks for taking the time to fill out this bug report! |
| 23 | |
| 24 | - type: checkboxes |
| 25 | attributes: |
| 26 | label: Is there an existing issue for this? |
| 27 | description: Please search to see if an issue already exists for the bug you encountered. |
| 28 | options: |
| 29 | - label: I have searched existing issues |
| 30 | required: true |
| 31 | |
| 32 | - type: textarea |
| 33 | id: current_behavior |
| 34 | attributes: |
| 35 | label: Current Behavior |
| 36 | description: A concise description of the bug that you're experiencing. |
| 37 | validations: |
| 38 | required: true |
| 39 | |
| 40 | - type: textarea |
| 41 | id: expected_behavior |
| 42 | attributes: |
| 43 | label: Expected Behavior |
| 44 | description: A concise description of what you expected to happen. |
| 45 | validations: |
| 46 | required: true |
| 47 | |
| 48 | - type: textarea |
| 49 | id: steps_to_reproduce |
| 50 | attributes: |
| 51 | label: Steps To Reproduce |
| 52 | description: Steps to reproduce the behavior. |
| 53 | placeholder: | |
| 54 | <example> |
| 55 | 1. In this environment... |
| 56 | 2. With this config... |
| 57 | 3. Boot to '...' |
| 58 | 4. Change option '...' |
| 59 | 4. See error... |
| 60 | validations: |
| 61 | required: true |
| 62 | |
| 63 | - type: textarea |
| 64 | id: build_environment |
| 65 | attributes: |
| 66 | label: Build Environment |
| 67 | description: | |
| 68 | examples: |
| 69 | - **OS**: Ubuntu 20.04 or Windows 11... |
| 70 | - **Tool Chain**: GCC5 or VS2022 or CLANGPDB... |
| 71 | - **Targets Impacted**: RELEASE, DEBUG, NO-TARGET, NOOPT... |
| 72 | value: | |
| 73 | - OS(s): |
| 74 | - Tool Chain(s): |
| 75 | - Targets Impacted: |
| 76 | render: markdown |
| 77 | validations: |
| 78 | required: true |
| 79 | |
| 80 | - type: textarea |
| 81 | id: version_info |
| 82 | attributes: |
| 83 | label: Version Information |
| 84 | description: What version of this repo reproduces the problem? |
| 85 | placeholder: | |
| 86 | Commit: <SHA> |
| 87 | -or- |
| 88 | Tag: <Tag> |
| 89 | render: text |
| 90 | validations: |
| 91 | required: true |
| 92 | |
| 93 | - type: markdown |
| 94 | attributes: |
| 95 | value: | |
| 96 | **Urgency Key** |
| 97 | - ๐ข **Low** |
| 98 | - A minor change with little to no important functional impact |
| 99 | - It is not important to fix this in a specific time frame |
| 100 | - ๐ก **Medium** |
| 101 | - An important change with a functional impact |
| 102 | - Will be prioritized above *low* issues in the normal course of development |
| 103 | - ๐ฅ **High** |
| 104 | - A critical change that has a significant functional impact |
| 105 | - Must be fixed immediately |
| 106 | |
| 107 | - type: dropdown |
| 108 | id: urgency |
| 109 | attributes: |
| 110 | label: Urgency |
| 111 | description: How urgent is it to fix this bug? |
| 112 | multiple: false |
| 113 | options: |
| 114 | - Low |
| 115 | - Medium |
| 116 | - High |
| 117 | validations: |
| 118 | required: true |
| 119 | |
| 120 | - type: dropdown |
| 121 | id: fix_owner |
| 122 | attributes: |
| 123 | label: Are you going to fix this? |
| 124 | description: Indicate if you are going to fix this or requesting someone else fix it. |
| 125 | multiple: false |
| 126 | options: |
| 127 | - I will fix it |
| 128 | - Someone else needs to fix it |
| 129 | validations: |
| 130 | required: true |
| 131 | |
| 132 | - type: dropdown |
| 133 | id: needs_maintainer_feedback |
| 134 | attributes: |
| 135 | label: Do you need maintainer feedback? |
| 136 | description: Indicate if you would like a maintainer to provide feedback on this submission. |
| 137 | multiple: false |
| 138 | options: |
| 139 | - No maintainer feedback needed |
| 140 | - Maintainer feedback requested |
| 141 | validations: |
| 142 | required: true |
| 143 | |
| 144 | - type: textarea |
| 145 | id: anything_else |
| 146 | attributes: |
| 147 | label: Anything else? |
| 148 | description: | |
| 149 | Links? References? Anything that will give us more context about the issue you are encountering. |
| 150 | |
| 151 | Serial debug logs and/or debugger logs are especially helpful! |
| 152 | |
| 153 | Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in. |
| 154 | validations: |
| 155 | required: false |
| 156 | |