|
| 1 | +name: Bug Report |
| 2 | +description: Report a bug or issue with the AI Coding Stack website |
| 3 | +title: "[Bug]: " |
| 4 | +labels: ["bug", "needs-triage"] |
| 5 | +body: |
| 6 | + - type: markdown |
| 7 | + attributes: |
| 8 | + value: | |
| 9 | + Thanks for taking the time to report a bug! Please provide as much detail as possible to help us resolve the issue quickly. |
| 10 | +
|
| 11 | + - type: textarea |
| 12 | + id: bug-description |
| 13 | + attributes: |
| 14 | + label: Bug Description |
| 15 | + description: A clear and concise description of what the bug is |
| 16 | + placeholder: What went wrong? |
| 17 | + validations: |
| 18 | + required: true |
| 19 | + |
| 20 | + - type: textarea |
| 21 | + id: steps-to-reproduce |
| 22 | + attributes: |
| 23 | + label: Steps to Reproduce |
| 24 | + description: Steps to reproduce the behavior |
| 25 | + placeholder: | |
| 26 | + 1. Go to '...' |
| 27 | + 2. Click on '...' |
| 28 | + 3. Scroll down to '...' |
| 29 | + 4. See error |
| 30 | + validations: |
| 31 | + required: true |
| 32 | + |
| 33 | + - type: textarea |
| 34 | + id: expected-behavior |
| 35 | + attributes: |
| 36 | + label: Expected Behavior |
| 37 | + description: What did you expect to happen? |
| 38 | + placeholder: Describe what you expected to see |
| 39 | + |
| 40 | + - type: textarea |
| 41 | + id: actual-behavior |
| 42 | + attributes: |
| 43 | + label: Actual Behavior |
| 44 | + description: What actually happened? |
| 45 | + placeholder: Describe what actually happened |
| 46 | + |
| 47 | + - type: dropdown |
| 48 | + id: severity |
| 49 | + attributes: |
| 50 | + label: Severity |
| 51 | + description: How severe is this bug? |
| 52 | + options: |
| 53 | + - Low - Minor issue, workaround available |
| 54 | + - Medium - Affects functionality but not critical |
| 55 | + - High - Major functionality broken |
| 56 | + - Critical - Site is unusable |
| 57 | + validations: |
| 58 | + required: true |
| 59 | + |
| 60 | + - type: input |
| 61 | + id: url |
| 62 | + attributes: |
| 63 | + label: Affected URL |
| 64 | + description: Which page is affected? |
| 65 | + placeholder: https://aicodingstack.io/... |
| 66 | + |
| 67 | + - type: dropdown |
| 68 | + id: browser |
| 69 | + attributes: |
| 70 | + label: Browser |
| 71 | + description: Which browser are you using? |
| 72 | + options: |
| 73 | + - Chrome |
| 74 | + - Firefox |
| 75 | + - Safari |
| 76 | + - Edge |
| 77 | + - Other |
| 78 | + |
| 79 | + - type: input |
| 80 | + id: browser-version |
| 81 | + attributes: |
| 82 | + label: Browser Version |
| 83 | + description: What version of the browser? |
| 84 | + placeholder: e.g., Chrome 120.0.6099.109 |
| 85 | + |
| 86 | + - type: dropdown |
| 87 | + id: device |
| 88 | + attributes: |
| 89 | + label: Device |
| 90 | + description: What device are you using? |
| 91 | + options: |
| 92 | + - Desktop (Windows) |
| 93 | + - Desktop (macOS) |
| 94 | + - Desktop (Linux) |
| 95 | + - Mobile (iOS) |
| 96 | + - Mobile (Android) |
| 97 | + - Tablet |
| 98 | + |
| 99 | + - type: textarea |
| 100 | + id: screenshots |
| 101 | + attributes: |
| 102 | + label: Screenshots |
| 103 | + description: If applicable, add screenshots to help explain the problem |
| 104 | + placeholder: Drag and drop images here or paste image URLs |
| 105 | + |
| 106 | + - type: textarea |
| 107 | + id: console-errors |
| 108 | + attributes: |
| 109 | + label: Browser Console Errors |
| 110 | + description: Any errors in the browser console? (F12 → Console tab) |
| 111 | + placeholder: Paste any error messages here |
| 112 | + render: shell |
| 113 | + |
| 114 | + - type: textarea |
| 115 | + id: additional-context |
| 116 | + attributes: |
| 117 | + label: Additional Context |
| 118 | + description: Any other context about the problem |
| 119 | + placeholder: Add any other information that might help |
| 120 | + |
| 121 | + - type: checkboxes |
| 122 | + id: checklist |
| 123 | + attributes: |
| 124 | + label: Pre-submission Checklist |
| 125 | + options: |
| 126 | + - label: I have searched for similar issues and this is not a duplicate |
| 127 | + required: true |
| 128 | + - label: I have provided all the requested information |
| 129 | + required: true |
0 commit comments