|
| 1 | +name: 🪳 Bug Report |
| 2 | +description: Tell us if something isn't working the way it's supposed to |
| 3 | + |
| 4 | +body: |
| 5 | + - type: markdown |
| 6 | + attributes: |
| 7 | + value: | |
| 8 | + We strongly encourage you to [submit a pull request](https://docs.silverstripe.org/en/contributing/code/) which fixes the issue. |
| 9 | + Bug reports which are accompanied with a pull request are a lot more likely to be resolved quickly. |
| 10 | + - type: input |
| 11 | + id: affected-versions |
| 12 | + attributes: |
| 13 | + label: Module version(s) affected |
| 14 | + description: | |
| 15 | + What version of _this module_ have you reproduced this bug on? |
| 16 | + Run `composer info` to see the specific version of each module installed in your project. |
| 17 | + If you don't have access to that, check inside the help menu in the bottom left of the CMS. |
| 18 | + placeholder: x.y.z |
| 19 | + validations: |
| 20 | + required: true |
| 21 | + - type: textarea |
| 22 | + id: description |
| 23 | + attributes: |
| 24 | + label: Description |
| 25 | + description: A clear and concise description of the problem |
| 26 | + validations: |
| 27 | + required: true |
| 28 | + - type: textarea |
| 29 | + id: how-to-reproduce |
| 30 | + attributes: |
| 31 | + label: How to reproduce |
| 32 | + description: | |
| 33 | + ⚠️ This is the most important part of the report ⚠️ |
| 34 | + Without a way to easily reproduce your issue, there is little chance we will be able to help you and work on a fix. |
| 35 | + - Please, take the time to show us some code and/or configuration that is needed for others to reproduce the problem easily. |
| 36 | + - If the bug is too complex to reproduce with some short code samples, please reproduce it in a public repository and provide a link to the repository along with steps for setting up and reproducing the bug using that repository. |
| 37 | + - If part of the bug includes an error or exception, please provide a full stack trace. |
| 38 | + - If any user interaction is required to reproduce the bug, please add an ordered list of steps that are required to reproduce it. |
| 39 | + - Be as clear as you can, but don't miss any steps out. Simply saying "create a page" is less useful than guiding us through the steps you're taking to create a page, for example. |
| 40 | + placeholder: | |
| 41 | +
|
| 42 | + #### Code sample |
| 43 | + ```php |
| 44 | +
|
| 45 | + ``` |
| 46 | +
|
| 47 | + #### Reproduction steps |
| 48 | + 1. |
| 49 | + validations: |
| 50 | + required: true |
| 51 | + - type: textarea |
| 52 | + id: possible-solution |
| 53 | + attributes: |
| 54 | + label: Possible Solution |
| 55 | + description: | |
| 56 | + *Optional: only if you have suggestions on a fix/reason for the bug* |
| 57 | + Please consider [submitting a pull request](https://docs.silverstripe.org/en/contributing/code/) with your solution! It helps get faster feedback and greatly increases the chance of the bug being fixed. |
| 58 | + - type: textarea |
| 59 | + id: additional-context |
| 60 | + attributes: |
| 61 | + label: Additional Context |
| 62 | + description: "*Optional: any other context about the problem: log messages, screenshots, etc.*" |
| 63 | + - type: checkboxes |
| 64 | + id: validations |
| 65 | + attributes: |
| 66 | + label: Validations |
| 67 | + description: "Before submitting the issue, please make sure you do the following:" |
| 68 | + options: |
| 69 | + - label: Check that there isn't already an issue that reports the same bug |
| 70 | + required: true |
| 71 | + - label: Double check that your reproduction steps work in a fresh installation of [`silverstripe/installer`](https://github.com/silverstripe/silverstripe-installer) (with any code examples you've provided) |
| 72 | + required: true |
0 commit comments