|
| 1 | +name: 🐛 Bug Report |
| 2 | +description: Report a bug to help us improve HiMarket |
| 3 | +title: "[Bug]: " |
| 4 | +labels: ["bug", "needs-triage"] |
| 5 | +body: |
| 6 | + - type: markdown |
| 7 | + attributes: |
| 8 | + value: | |
| 9 | + Thank you for reporting a bug! Please fill out the information below to help us diagnose and fix the issue quickly. |
| 10 | + |
| 11 | + **Before submitting:** |
| 12 | + - Search existing issues to avoid duplicates |
| 13 | + - Make sure you're using the latest version |
| 14 | + - Check the documentation and FAQ |
| 15 | +
|
| 16 | + - type: textarea |
| 17 | + id: description |
| 18 | + attributes: |
| 19 | + label: Bug Description |
| 20 | + description: A clear and concise description of what the bug is |
| 21 | + placeholder: When I try to..., the system... |
| 22 | + validations: |
| 23 | + required: true |
| 24 | + |
| 25 | + - type: textarea |
| 26 | + id: steps |
| 27 | + attributes: |
| 28 | + label: Steps to Reproduce |
| 29 | + description: Detailed steps to reproduce the behavior |
| 30 | + placeholder: | |
| 31 | + 1. Go to '...' |
| 32 | + 2. Click on '...' |
| 33 | + 3. Scroll down to '...' |
| 34 | + 4. See error |
| 35 | + validations: |
| 36 | + required: true |
| 37 | + |
| 38 | + - type: textarea |
| 39 | + id: expected |
| 40 | + attributes: |
| 41 | + label: Expected Behavior |
| 42 | + description: What you expected to happen |
| 43 | + placeholder: I expected... |
| 44 | + validations: |
| 45 | + required: true |
| 46 | + |
| 47 | + - type: textarea |
| 48 | + id: actual |
| 49 | + attributes: |
| 50 | + label: Actual Behavior |
| 51 | + description: What actually happened (include error messages if any) |
| 52 | + placeholder: Instead, what happened was... |
| 53 | + validations: |
| 54 | + required: true |
| 55 | + |
| 56 | + - type: dropdown |
| 57 | + id: component |
| 58 | + attributes: |
| 59 | + label: Affected Component |
| 60 | + description: Which part of HiMarket is affected? |
| 61 | + options: |
| 62 | + - Frontend (User Interface) |
| 63 | + - Admin Console |
| 64 | + - Backend API |
| 65 | + - Database (DAL) |
| 66 | + - Configuration/Setup |
| 67 | + - Documentation |
| 68 | + - CI/CD Pipeline |
| 69 | + - Other |
| 70 | + validations: |
| 71 | + required: true |
| 72 | + |
| 73 | + - type: dropdown |
| 74 | + id: severity |
| 75 | + attributes: |
| 76 | + label: Severity |
| 77 | + description: How severe is this bug? |
| 78 | + options: |
| 79 | + - Critical (System crash, data loss) |
| 80 | + - High (Major functionality broken) |
| 81 | + - Medium (Feature partially works) |
| 82 | + - Low (Minor issue, workaround exists) |
| 83 | + validations: |
| 84 | + required: true |
| 85 | + |
| 86 | + - type: textarea |
| 87 | + id: environment |
| 88 | + attributes: |
| 89 | + label: Environment |
| 90 | + description: Your environment details |
| 91 | + placeholder: | |
| 92 | + - OS: [e.g. macOS 13.0, Ubuntu 22.04, Windows 11] |
| 93 | + - Browser: [e.g. Chrome 120, Safari 17, Firefox 121] |
| 94 | + - HiMarket Version: [e.g. v1.0.0, commit hash] |
| 95 | + - Java Version: [e.g. OpenJDK 17] |
| 96 | + - Node.js Version: [e.g. v20.0.0] |
| 97 | + render: markdown |
| 98 | + validations: |
| 99 | + required: true |
| 100 | + |
| 101 | + - type: textarea |
| 102 | + id: logs |
| 103 | + attributes: |
| 104 | + label: Logs and Error Messages |
| 105 | + description: Paste any relevant log output or error messages |
| 106 | + placeholder: | |
| 107 | + Paste error logs here... |
| 108 | + render: shell |
| 109 | + validations: |
| 110 | + required: false |
| 111 | + |
| 112 | + - type: textarea |
| 113 | + id: screenshots |
| 114 | + attributes: |
| 115 | + label: Screenshots |
| 116 | + description: If applicable, add screenshots to help explain your problem |
| 117 | + placeholder: Drag and drop images here or paste image URLs |
| 118 | + validations: |
| 119 | + required: false |
| 120 | + |
| 121 | + - type: textarea |
| 122 | + id: additional |
| 123 | + attributes: |
| 124 | + label: Additional Context |
| 125 | + description: Any other context about the problem |
| 126 | + placeholder: This started happening after... |
| 127 | + validations: |
| 128 | + required: false |
| 129 | + |
| 130 | + - type: checkboxes |
| 131 | + id: checklist |
| 132 | + attributes: |
| 133 | + label: Checklist |
| 134 | + options: |
| 135 | + - label: I have searched existing issues to avoid duplicates |
| 136 | + required: true |
| 137 | + - label: I have included all necessary information above |
| 138 | + required: true |
| 139 | + - label: I am using the latest version of HiMarket |
| 140 | + required: false |
| 141 | + - label: I can reproduce this issue consistently |
| 142 | + required: false |
| 143 | + |
0 commit comments