|
| 1 | +name: Bug Report |
| 2 | +description: Report a bug or unexpected behavior |
| 3 | +title: "[Bug]: " |
| 4 | +labels: ["bug"] |
| 5 | +body: |
| 6 | + - type: markdown |
| 7 | + attributes: |
| 8 | + value: | |
| 9 | + Thanks for taking the time to report a bug! Please fill out the information below to help us investigate. |
| 10 | +
|
| 11 | + - type: textarea |
| 12 | + id: description |
| 13 | + attributes: |
| 14 | + label: Bug Description |
| 15 | + description: A clear and concise description of what the bug is. |
| 16 | + placeholder: Tell us what you see! |
| 17 | + validations: |
| 18 | + required: true |
| 19 | + |
| 20 | + - type: textarea |
| 21 | + id: reproduction |
| 22 | + attributes: |
| 23 | + label: Steps to Reproduce |
| 24 | + description: Steps to reproduce the behavior |
| 25 | + placeholder: | |
| 26 | + 1. Include nfx-stringbuilder headers... |
| 27 | + 2. Create Decimal/Int128 instance... |
| 28 | + 3. See error... |
| 29 | + validations: |
| 30 | + required: true |
| 31 | + |
| 32 | + - type: textarea |
| 33 | + id: expected |
| 34 | + attributes: |
| 35 | + label: Expected Behavior |
| 36 | + description: What did you expect to happen? |
| 37 | + placeholder: I expected... |
| 38 | + validations: |
| 39 | + required: true |
| 40 | + |
| 41 | + - type: textarea |
| 42 | + id: actual |
| 43 | + attributes: |
| 44 | + label: Actual Behavior |
| 45 | + description: What actually happened? |
| 46 | + placeholder: Instead, I got... |
| 47 | + validations: |
| 48 | + required: true |
| 49 | + |
| 50 | + - type: textarea |
| 51 | + id: code |
| 52 | + attributes: |
| 53 | + label: Code Sample |
| 54 | + description: Minimal code to reproduce the issue |
| 55 | + render: cpp |
| 56 | + placeholder: | |
| 57 | + #include <nfx/string/StringBuilder.h> |
| 58 | +
|
| 59 | + int main() { |
| 60 | + using namespace nfx::string; |
| 61 | + |
| 62 | + auto lease = StringBuilderPool::lease(); |
| 63 | + auto builder = lease.create(); |
| 64 | + builder << "Hello" << ", " << "World"; |
| 65 | + // Your code here that reproduces the issue |
| 66 | + } |
| 67 | + validations: |
| 68 | + required: false |
| 69 | + |
| 70 | + - type: dropdown |
| 71 | + id: os |
| 72 | + attributes: |
| 73 | + label: Operating System |
| 74 | + description: What OS are you running? |
| 75 | + options: |
| 76 | + - Windows |
| 77 | + - Linux |
| 78 | + - macOS |
| 79 | + - Other |
| 80 | + multiple: true |
| 81 | + validations: |
| 82 | + required: true |
| 83 | + |
| 84 | + - type: input |
| 85 | + id: compiler |
| 86 | + attributes: |
| 87 | + label: Compiler |
| 88 | + description: Which compiler and version? (e.g., GCC 14.2.0, MSVC 19.44, Clang 19.1) |
| 89 | + placeholder: "GCC 14.2.0" |
| 90 | + validations: |
| 91 | + required: true |
| 92 | + |
| 93 | + - type: input |
| 94 | + id: cmake |
| 95 | + attributes: |
| 96 | + label: CMake Version |
| 97 | + description: What version of CMake are you using? |
| 98 | + placeholder: "3.30.0" |
| 99 | + validations: |
| 100 | + required: false |
| 101 | + |
| 102 | + - type: input |
| 103 | + id: version |
| 104 | + attributes: |
| 105 | + label: nfx-stringbuilder Version |
| 106 | + description: Which version of nfx-stringbuilder are you using? |
| 107 | + placeholder: "1.0.0" |
| 108 | + validations: |
| 109 | + required: true |
| 110 | + |
| 111 | + - type: textarea |
| 112 | + id: additional |
| 113 | + attributes: |
| 114 | + label: Additional Context |
| 115 | + description: Add any other context about the problem here (error messages, stack traces, etc.) |
| 116 | + placeholder: Error output, logs, screenshots, etc. |
| 117 | + validations: |
| 118 | + required: false |
0 commit comments