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