|
| 1 | +# GitHub issue form. For more information see: |
| 2 | +# https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-issue-forms |
| 3 | + |
| 4 | +name: Report something is not working properly 🐛 |
| 5 | +description: |
| 6 | + Use this if there is something that is not working properly. If you are not |
| 7 | + sure or you need help making something work, please ask a question instead. |
| 8 | +labels: priority:❓, type:bug |
| 9 | +body: |
| 10 | + - type: markdown |
| 11 | + attributes: |
| 12 | + value: |
| 13 | + Thanks for taking the time to fill out this bug report! |
| 14 | + - type: textarea |
| 15 | + id: what-happened |
| 16 | + attributes: |
| 17 | + label: What happened? |
| 18 | + description: Please tell us what happened that shouldn't have. |
| 19 | + placeholder: What happened that shouldn't have. |
| 20 | + validations: |
| 21 | + required: true |
| 22 | + - type: textarea |
| 23 | + id: what-expected |
| 24 | + attributes: |
| 25 | + label: What did you expect instead? |
| 26 | + description: Please tell us what did you expect to happen. |
| 27 | + placeholder: What did you expect to happen. |
| 28 | + validations: |
| 29 | + required: true |
| 30 | + - type: dropdown |
| 31 | + id: version |
| 32 | + attributes: |
| 33 | + label: Affected version(s) |
| 34 | + description: |
| 35 | + Which version(s) have you tried and found this issue in? (if you see |
| 36 | + this issue **not** happening on any version, please let us know in the |
| 37 | + "Extra information"). |
| 38 | + multiple: true |
| 39 | + options: |
| 40 | + - I don't know (version:❓) |
| 41 | + - An older version (version:old) |
| 42 | + - v0.1.x (version:0.1.x) |
| 43 | + validations: |
| 44 | + required: true |
| 45 | + - type: dropdown |
| 46 | + id: part |
| 47 | + attributes: |
| 48 | + label: Affected part(s) |
| 49 | + description: |
| 50 | + Which parts of the repo are affected by this issue? Select all that |
| 51 | + apply. |
| 52 | + multiple: true |
| 53 | + options: |
| 54 | + - I don't know (part:❓) |
| 55 | + - Documentation (part:docs) |
| 56 | + - Unit, integration and performance tests (part:tests) |
| 57 | + - Build script, CI, dependencies, etc. (part:tooling) |
| 58 | + - Channels implementation (part:channels) |
| 59 | + validations: |
| 60 | + required: true |
| 61 | + - type: textarea |
| 62 | + id: extra |
| 63 | + attributes: |
| 64 | + label: Extra information |
| 65 | + description: |
| 66 | + Please write here any extra information you think it might be relevant, |
| 67 | + e.g., if this didn't happened before, or if you suspect where the |
| 68 | + problem might be. |
| 69 | + placeholder: Any extra information you think it might be relevant. |
0 commit comments