|
| 1 | +name: 🐛 Bug Report |
| 2 | +description: Report a bug or unexpected behavior |
| 3 | +labels: ["bug", "triage"] |
| 4 | +body: |
| 5 | + - type: markdown |
| 6 | + attributes: |
| 7 | + value: | |
| 8 | + Thanks for taking the time to report a bug! Please search existing issues first to avoid duplicates. |
| 9 | + |
| 10 | + ⚠️ **Security Issues**: Do NOT use this template for security vulnerabilities. |
| 11 | + Please email [security@sensibleanalytics.co](mailto:security@sensibleanalytics.co) instead. |
| 12 | +
|
| 13 | + - type: checkboxes |
| 14 | + id: pre-flight |
| 15 | + attributes: |
| 16 | + label: Pre-flight Checks |
| 17 | + description: Please confirm you've completed these steps |
| 18 | + options: |
| 19 | + - label: I have searched for existing issues (open and closed) |
| 20 | + required: true |
| 21 | + - label: I am using the latest version of the software |
| 22 | + required: true |
| 23 | + - label: I have read the relevant documentation |
| 24 | + required: false |
| 25 | + |
| 26 | + - type: textarea |
| 27 | + id: description |
| 28 | + attributes: |
| 29 | + label: Bug Description |
| 30 | + description: A clear and concise description of what the bug is |
| 31 | + placeholder: | |
| 32 | + When I try to [action], [unexpected behavior] happens instead of [expected behavior]. |
| 33 | + validations: |
| 34 | + required: true |
| 35 | + |
| 36 | + - type: textarea |
| 37 | + id: reproduction |
| 38 | + attributes: |
| 39 | + label: Steps to Reproduce |
| 40 | + description: Steps to reproduce the behavior |
| 41 | + placeholder: | |
| 42 | + 1. Go to '...' |
| 43 | + 2. Click on '...' |
| 44 | + 3. Scroll down to '...' |
| 45 | + 4. See error |
| 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 | + placeholder: I expected the application to... |
| 55 | + validations: |
| 56 | + required: true |
| 57 | + |
| 58 | + - type: textarea |
| 59 | + id: actual |
| 60 | + attributes: |
| 61 | + label: Actual Behavior |
| 62 | + description: What actually happened |
| 63 | + placeholder: Instead, the application... |
| 64 | + validations: |
| 65 | + required: true |
| 66 | + |
| 67 | + - type: textarea |
| 68 | + id: environment |
| 69 | + attributes: |
| 70 | + label: Environment |
| 71 | + description: | |
| 72 | + Please provide details about your environment: |
| 73 | + - OS: [e.g., macOS, Windows, Linux] |
| 74 | + - Browser: [e.g., Chrome, Safari, Firefox] (if applicable) |
| 75 | + - Node.js version: [e.g., 18.17.0] (run `node --version`) |
| 76 | + - Package version: [e.g., 1.2.3] |
| 77 | + render: bash |
| 78 | + placeholder: | |
| 79 | + OS: macOS 14.0 |
| 80 | + Browser: Chrome 120 |
| 81 | + Node.js: 18.17.0 |
| 82 | + Package Version: 1.2.3 |
| 83 | + validations: |
| 84 | + required: true |
| 85 | + |
| 86 | + - type: textarea |
| 87 | + id: logs |
| 88 | + attributes: |
| 89 | + label: Logs & Screenshots |
| 90 | + description: | |
| 91 | + If applicable, add screenshots, error messages, or log output to help explain your problem. |
| 92 | + |
| 93 | + Tip: For long logs, use `<details><summary>Click to expand</summary>...logs...</details>` |
| 94 | +
|
| 95 | + - type: dropdown |
| 96 | + id: severity |
| 97 | + attributes: |
| 98 | + label: Severity |
| 99 | + description: How severe is this issue? |
| 100 | + options: |
| 101 | + - Critical - Application crashes or data loss |
| 102 | + - High - Major feature broken, workaround difficult |
| 103 | + - Medium - Feature partially broken, workaround exists |
| 104 | + - Low - Minor issue, cosmetic, or enhancement |
| 105 | + default: 2 |
| 106 | + |
| 107 | + - type: checkboxes |
| 108 | + id: terms |
| 109 | + attributes: |
| 110 | + label: Code of Conduct |
| 111 | + description: By submitting this issue, you agree to follow our [Code of Conduct](../CODE_OF_CONDUCT.md) |
| 112 | + options: |
| 113 | + - label: I agree to follow this project's Code of Conduct |
| 114 | + required: true |
0 commit comments