|
| 1 | +name: Have you encountered an issue? |
| 2 | +description: Report an issue with Winston. |
| 3 | +title: "[Bug]: " |
| 4 | +labels: ["Bug", "Needs Investigation"] |
| 5 | +body: |
| 6 | + - type: markdown # Form Header |
| 7 | + attributes: |
| 8 | + value: >- |
| 9 | + This issue form is for reporting bugs only! |
| 10 | + - type: input # Search Terms |
| 11 | + validations: |
| 12 | + required: true |
| 13 | + attributes: |
| 14 | + label: 🔎 Search Terms |
| 15 | + description: >- |
| 16 | + What search terms did you use when trying to find an existing bug report, looking in both open and closed issues? |
| 17 | + List them here (comma seperated) so people in the future can find this one more easily. |
| 18 | + - type: textarea # Problem Definition |
| 19 | + validations: |
| 20 | + required: true |
| 21 | + attributes: |
| 22 | + label: The problem |
| 23 | + description: >- |
| 24 | + Please provide a clear and concise description of the problem you've encountered and what the |
| 25 | + expected behavior was. |
| 26 | + - type: markdown # Environment Section Header |
| 27 | + attributes: |
| 28 | + value: | |
| 29 | + ## Environment |
| 30 | + - type: input # Affected Version Input |
| 31 | + id: winston-version |
| 32 | + validations: |
| 33 | + required: true |
| 34 | + attributes: |
| 35 | + label: What version of Winston presents the issue? |
| 36 | + placeholder: v3.4.0 |
| 37 | + description: > |
| 38 | + Can be found by running one of the following (depending on your package manager of choice): |
| 39 | + - `npm list winston` |
| 40 | + - `yarn list --pattern winston` |
| 41 | + - type: input # Affected Version Input |
| 42 | + id: node-version |
| 43 | + validations: |
| 44 | + required: true |
| 45 | + attributes: |
| 46 | + label: What version of Node are you using? |
| 47 | + placeholder: v16.8.0 |
| 48 | + description: > |
| 49 | + Can be found by running the following: `node -v` |
| 50 | + - type: input # Last Known Working Version |
| 51 | + attributes: |
| 52 | + label: If this worked in a previous version of Winston, which was it? |
| 53 | + placeholder: v3.0.0 |
| 54 | + description: > |
| 55 | + If known, otherwise please leave blank. |
| 56 | + - type: markdown # Details Section Header |
| 57 | + attributes: |
| 58 | + value: | |
| 59 | + # Details |
| 60 | + - type: textarea # Minimum Working Example Input |
| 61 | + attributes: |
| 62 | + label: Minimum Working Example |
| 63 | + description: | |
| 64 | + If you can, providing an MWE to reproduce the issue you're encountering can greatly speed up |
| 65 | + investigation into the issue by one of our maintainers, or anyone else in the community who's looking |
| 66 | + to get involved. |
| 67 | +
|
| 68 | + This can be as simple as a script, a link to a repo, etc. |
| 69 | + If using a script please wrap with triple backticks and language. EG: |
| 70 | + ` ```javascript ` |
| 71 | + - type: textarea # Additional Information |
| 72 | + attributes: |
| 73 | + label: Additional information |
| 74 | + description: > |
| 75 | + If you have any additional information for us that you feel will be valuable, please use the field below. |
0 commit comments