|
| 1 | +name: Bug report |
| 2 | +description: Report a bug or unexpected behavior in an OpenNG library |
| 3 | +title: "[Bug]: " |
| 4 | +labels: |
| 5 | +- bug |
| 6 | + type: Bug |
| 7 | + body: |
| 8 | +- type: markdown |
| 9 | + attributes: |
| 10 | + value: | |
| 11 | + Thanks for taking the time to report a bug. |
| 12 | + |
| 13 | + **Please do not report security vulnerabilities here.** Use the appropriate private disclosure channel for your project. |
| 14 | + |
| 15 | + Issues without a minimal reproduction are difficult to triage and may be closed. Provide a StackBlitz or GitHub repo that demonstrates the problem. |
| 16 | + |
| 17 | +- type: checkboxes |
| 18 | + id: checklist |
| 19 | + attributes: |
| 20 | + label: Checklist |
| 21 | + options: |
| 22 | + - label: I have searched the existing issues and have not found a duplicate |
| 23 | + required: true |
| 24 | + - label: I have read the README and documentation and have not found a solution |
| 25 | + required: true |
| 26 | + - label: I agree to follow the [OpenNG Foundation Code of Conduct](https://github.com/openng-foundation/.github/blob/main/CODE_OF_CONDUCT.md) |
| 27 | + required: true |
| 28 | + |
| 29 | +- type: textarea |
| 30 | + id: description |
| 31 | + attributes: |
| 32 | + label: What happened? |
| 33 | + description: A clear and concise description of the bug. |
| 34 | + validations: |
| 35 | + required: true |
| 36 | + |
| 37 | +- type: textarea |
| 38 | + id: steps |
| 39 | + attributes: |
| 40 | + label: Steps to reproduce |
| 41 | + description: Detailed steps to reproduce the behavior. |
| 42 | + placeholder: | |
| 43 | + 1. ... |
| 44 | + 2. ... |
| 45 | + 3. ... |
| 46 | + validations: |
| 47 | + required: true |
| 48 | + |
| 49 | +- type: textarea |
| 50 | + id: expected |
| 51 | + attributes: |
| 52 | + label: Expected behavior |
| 53 | + description: What you expected to happen. |
| 54 | + validations: |
| 55 | + required: true |
| 56 | + |
| 57 | +- type: textarea |
| 58 | + id: actual |
| 59 | + attributes: |
| 60 | + label: Actual behavior |
| 61 | + description: What actually happened. |
| 62 | + validations: |
| 63 | + required: true |
| 64 | + |
| 65 | +- type: input |
| 66 | + id: repro-url |
| 67 | + attributes: |
| 68 | + label: Minimal reproduction |
| 69 | + description: Link to a StackBlitz, GitHub repo, or other minimal repro. |
| 70 | + placeholder: https://stackblitz.com/... or https://github.com/... |
| 71 | + validations: |
| 72 | + required: true |
| 73 | + |
| 74 | +- type: input |
| 75 | + id: library-version |
| 76 | + attributes: |
| 77 | + label: Library version |
| 78 | + placeholder: e.g. 1.2.3 |
| 79 | + validations: |
| 80 | + required: true |
| 81 | + |
| 82 | +- type: input |
| 83 | + id: angular-version |
| 84 | + attributes: |
| 85 | + label: Angular version |
| 86 | + placeholder: e.g. 19.0.0 |
| 87 | + validations: |
| 88 | + required: true |
| 89 | + |
| 90 | +- type: input |
| 91 | + id: node-version |
| 92 | + attributes: |
| 93 | + label: Node version |
| 94 | + placeholder: e.g. 22.0.0 |
| 95 | + validations: |
| 96 | + required: true |
| 97 | + |
| 98 | +- type: dropdown |
| 99 | + id: package-manager |
| 100 | + attributes: |
| 101 | + label: Package manager |
| 102 | + options: |
| 103 | + - npm |
| 104 | + - pnpm |
| 105 | + - yarn |
| 106 | + - bun |
| 107 | + validations: |
| 108 | + required: true |
| 109 | + |
| 110 | +- type: dropdown |
| 111 | + id: browsers |
| 112 | + attributes: |
| 113 | + label: Browser(s) |
| 114 | + multiple: true |
| 115 | + options: |
| 116 | + - Chrome |
| 117 | + - Edge |
| 118 | + - Firefox |
| 119 | + - Safari |
| 120 | + - Opera |
| 121 | + - Other |
| 122 | + validations: |
| 123 | + required: true |
| 124 | + |
| 125 | +- type: textarea |
| 126 | + id: environment |
| 127 | + attributes: |
| 128 | + label: Environment details |
| 129 | + description: OS and other relevant environment information. |
| 130 | + value: | |
| 131 | + - OS: |
| 132 | + - Node: |
| 133 | + - Package manager: |
| 134 | + render: markdown |
| 135 | + |
| 136 | +- type: dropdown |
| 137 | + id: angular-setup |
| 138 | + attributes: |
| 139 | + label: Angular application setup |
| 140 | + options: |
| 141 | + - Standalone components |
| 142 | + - NgModule-based |
| 143 | + - Both / mixed |
| 144 | + - Not sure |
| 145 | + |
| 146 | +- type: checkboxes |
| 147 | + id: angular-context |
| 148 | + attributes: |
| 149 | + label: Angular context |
| 150 | + options: |
| 151 | + - label: SSR (Server-Side Rendering) is involved |
| 152 | + - label: Zoneless change detection is enabled |
| 153 | + |
| 154 | +- type: textarea |
| 155 | + id: logs |
| 156 | + attributes: |
| 157 | + label: Relevant log output |
| 158 | + description: Console errors, stack traces, or terminal output. |
| 159 | + render: shell |
| 160 | + |
| 161 | +- type: upload |
| 162 | + id: screenshots |
| 163 | + attributes: |
| 164 | + label: Screenshots |
| 165 | + description: If applicable, add screenshots to help explain the problem. |
| 166 | + validations: |
| 167 | + accept: .png,.jpg,.jpeg,.gif,.webp |
| 168 | + |
| 169 | +- type: textarea |
| 170 | + id: additional-context |
| 171 | + attributes: |
| 172 | + label: Additional context |
| 173 | + description: Any other information that might help us investigate. |
0 commit comments