|
| 1 | +name: Bug Report |
| 2 | +description: Report a bug or unexpected behavior in StockMart |
| 3 | +title: "[Bug]: " |
| 4 | +labels: ["bug", "triage"] |
| 5 | +assignees: [] |
| 6 | + |
| 7 | +body: |
| 8 | + - type: markdown |
| 9 | + attributes: |
| 10 | + value: | |
| 11 | + Thanks for taking the time to report a bug! Please fill out the form below. |
| 12 | +
|
| 13 | + - type: checkboxes |
| 14 | + id: prerequisites |
| 15 | + attributes: |
| 16 | + label: Prerequisites |
| 17 | + description: Please confirm the following before submitting |
| 18 | + options: |
| 19 | + - label: I have searched existing issues to ensure this bug hasn't been reported |
| 20 | + required: true |
| 21 | + - label: I have read the documentation |
| 22 | + required: true |
| 23 | + |
| 24 | + - type: dropdown |
| 25 | + id: component |
| 26 | + attributes: |
| 27 | + label: Component |
| 28 | + description: Which part of StockMart is affected? |
| 29 | + options: |
| 30 | + - Backend (Rust server) |
| 31 | + - Frontend (React UI) |
| 32 | + - Trading Engine |
| 33 | + - Admin Dashboard |
| 34 | + - WebSocket Connection |
| 35 | + - Authentication |
| 36 | + - Charts/Visualization |
| 37 | + - Other |
| 38 | + validations: |
| 39 | + required: true |
| 40 | + |
| 41 | + - type: textarea |
| 42 | + id: description |
| 43 | + attributes: |
| 44 | + label: Bug Description |
| 45 | + description: A clear and concise description of what the bug is |
| 46 | + placeholder: Describe what happened... |
| 47 | + validations: |
| 48 | + required: true |
| 49 | + |
| 50 | + - type: textarea |
| 51 | + id: reproduction |
| 52 | + attributes: |
| 53 | + label: Steps to Reproduce |
| 54 | + description: Steps to reproduce the behavior |
| 55 | + placeholder: | |
| 56 | + 1. Go to '...' |
| 57 | + 2. Click on '...' |
| 58 | + 3. Scroll down to '...' |
| 59 | + 4. See error |
| 60 | + validations: |
| 61 | + required: true |
| 62 | + |
| 63 | + - type: textarea |
| 64 | + id: expected |
| 65 | + attributes: |
| 66 | + label: Expected Behavior |
| 67 | + description: What did you expect to happen? |
| 68 | + placeholder: Describe what you expected... |
| 69 | + validations: |
| 70 | + required: true |
| 71 | + |
| 72 | + - type: textarea |
| 73 | + id: actual |
| 74 | + attributes: |
| 75 | + label: Actual Behavior |
| 76 | + description: What actually happened? |
| 77 | + placeholder: Describe what actually happened... |
| 78 | + validations: |
| 79 | + required: true |
| 80 | + |
| 81 | + - type: textarea |
| 82 | + id: screenshots |
| 83 | + attributes: |
| 84 | + label: Screenshots |
| 85 | + description: If applicable, add screenshots to help explain your problem |
| 86 | + placeholder: Drag and drop images here... |
| 87 | + |
| 88 | + - type: dropdown |
| 89 | + id: browser |
| 90 | + attributes: |
| 91 | + label: Browser |
| 92 | + description: What browser are you using? |
| 93 | + options: |
| 94 | + - Chrome |
| 95 | + - Firefox |
| 96 | + - Safari |
| 97 | + - Edge |
| 98 | + - Other |
| 99 | + - N/A (Backend issue) |
| 100 | + |
| 101 | + - type: input |
| 102 | + id: os |
| 103 | + attributes: |
| 104 | + label: Operating System |
| 105 | + description: What OS are you using? |
| 106 | + placeholder: e.g., macOS 14.2, Windows 11, Ubuntu 22.04 |
| 107 | + |
| 108 | + - type: input |
| 109 | + id: rust-version |
| 110 | + attributes: |
| 111 | + label: Rust Version (if applicable) |
| 112 | + description: Output of `rustc --version` |
| 113 | + placeholder: e.g., rustc 1.76.0 |
| 114 | + |
| 115 | + - type: input |
| 116 | + id: node-version |
| 117 | + attributes: |
| 118 | + label: Node.js Version (if applicable) |
| 119 | + description: Output of `node --version` |
| 120 | + placeholder: e.g., v20.10.0 |
| 121 | + |
| 122 | + - type: textarea |
| 123 | + id: logs |
| 124 | + attributes: |
| 125 | + label: Relevant Log Output |
| 126 | + description: Please copy and paste any relevant log output |
| 127 | + render: shell |
| 128 | + |
| 129 | + - type: textarea |
| 130 | + id: additional |
| 131 | + attributes: |
| 132 | + label: Additional Context |
| 133 | + description: Add any other context about the problem here |
0 commit comments