|
| 1 | +name: 🐛 Bug Report |
| 2 | +description: Report a bug or unexpected behavior in String Morpher |
| 3 | +title: "[Bug]: " |
| 4 | +labels: ["bug"] |
| 5 | +body: |
| 6 | + - type: markdown |
| 7 | + attributes: |
| 8 | + value: | |
| 9 | + Thanks for reporting a bug! Please provide as much detail as possible to help us fix it 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: When I use SM::method()... I expect... but instead... |
| 17 | + validations: |
| 18 | + required: true |
| 19 | + |
| 20 | + - type: textarea |
| 21 | + id: reproduction |
| 22 | + attributes: |
| 23 | + label: Steps to Reproduce |
| 24 | + description: Provide a minimal code example to reproduce the issue |
| 25 | + placeholder: | |
| 26 | + ```php |
| 27 | + use SSolWEB\StringMorpher\StringMorpher as SM; |
| 28 | + |
| 29 | + $result = SM::make('example') |
| 30 | + ->method() |
| 31 | + ->getString(); |
| 32 | + |
| 33 | + echo $result; // Outputs: ... |
| 34 | + ``` |
| 35 | + render: php |
| 36 | + validations: |
| 37 | + required: true |
| 38 | + |
| 39 | + - type: textarea |
| 40 | + id: expected-behavior |
| 41 | + attributes: |
| 42 | + label: Expected Behavior |
| 43 | + description: What did you expect to happen? |
| 44 | + placeholder: I expected the output to be... |
| 45 | + validations: |
| 46 | + required: true |
| 47 | + |
| 48 | + - type: textarea |
| 49 | + id: actual-behavior |
| 50 | + attributes: |
| 51 | + label: Actual Behavior |
| 52 | + description: What actually happened? |
| 53 | + placeholder: Instead, the output was... |
| 54 | + validations: |
| 55 | + required: true |
| 56 | + |
| 57 | + - type: input |
| 58 | + id: version |
| 59 | + attributes: |
| 60 | + label: String Morpher Version |
| 61 | + description: Which version of String Morpher are you using? |
| 62 | + placeholder: e.g., 1.0.0 (check composer.json or packagist) |
| 63 | + validations: |
| 64 | + required: true |
| 65 | + |
| 66 | + - type: input |
| 67 | + id: php-version |
| 68 | + attributes: |
| 69 | + label: PHP Version |
| 70 | + description: Which version of PHP are you running? |
| 71 | + placeholder: e.g., 8.1, 8.2, 8.3 |
| 72 | + validations: |
| 73 | + required: true |
| 74 | + |
| 75 | + - type: textarea |
| 76 | + id: environment |
| 77 | + attributes: |
| 78 | + label: Environment Details |
| 79 | + description: Any relevant environment information (OS, framework, etc.) |
| 80 | + placeholder: | |
| 81 | + - OS: Ubuntu 22.04 |
| 82 | + - Framework: Laravel 10 |
| 83 | + validations: |
| 84 | + required: false |
| 85 | + |
| 86 | + - type: textarea |
| 87 | + id: additional-context |
| 88 | + attributes: |
| 89 | + label: Additional Context |
| 90 | + description: Add any other context, screenshots, or error messages |
| 91 | + validations: |
| 92 | + required: false |
| 93 | + |
| 94 | + - type: checkboxes |
| 95 | + id: checklist |
| 96 | + attributes: |
| 97 | + label: Checklist |
| 98 | + description: Please confirm the following |
| 99 | + options: |
| 100 | + - label: I have read the [Installation](https://ssolweb.github.io/string-morpher/docs/installation/) and [Methods](https://ssolweb.github.io/string-morpher/docs/methods/) documentation |
| 101 | + required: true |
| 102 | + - label: I have searched for similar issues (open and closed) |
| 103 | + required: true |
| 104 | + - label: This issue is not already documented |
| 105 | + required: true |
0 commit comments