|
| 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: |
| 9 | + - "priority:❓" |
| 10 | + - "type:bug" |
| 11 | +body: |
| 12 | + - type: markdown |
| 13 | + attributes: |
| 14 | + value: |
| 15 | + Thanks for taking the time to fill out this bug report! |
| 16 | + - type: textarea |
| 17 | + id: what-happened |
| 18 | + attributes: |
| 19 | + label: What happened? |
| 20 | + description: Please tell us what happened that shouldn't have. |
| 21 | + placeholder: What happened that shouldn't have. |
| 22 | + validations: |
| 23 | + required: true |
| 24 | + - type: textarea |
| 25 | + id: what-expected |
| 26 | + attributes: |
| 27 | + label: What did you expect instead? |
| 28 | + description: Please tell us what did you expect to happen. |
| 29 | + placeholder: What did you expect to happen. |
| 30 | + validations: |
| 31 | + required: true |
| 32 | + - type: input |
| 33 | + id: version |
| 34 | + attributes: |
| 35 | + label: Affected version(s) |
| 36 | + description: |
| 37 | + Please add a comma-separated list of the versions affected by this |
| 38 | + issue. |
| 39 | + placeholder: 'Example: v0.11.0, v0.12.0' |
| 40 | + - type: dropdown |
| 41 | + id: part |
| 42 | + attributes: |
| 43 | + label: Affected part(s) |
| 44 | + description: |
| 45 | + Which parts of the repo are affected by this issue? Select all that |
| 46 | + apply. |
| 47 | + multiple: true |
| 48 | + options: |
| 49 | + - I don't know (part:❓) |
| 50 | + - Documentation (part:docs) |
| 51 | + - Unit, integration and performance tests (part:tests) |
| 52 | + - Build script, CI, dependencies, etc. (part:tooling) |
| 53 | + - Affects only the configuration of actor repos (part:actor-only) |
| 54 | + - Affects only the configuration of app repos (part:app-only) |
| 55 | + - Affects only the configuration of lib repos (part:lib-only) |
| 56 | + - Affects only the configuration of model repos (part:model-only) |
| 57 | + - Affects the configuration of a api repo (part:api-only) |
| 58 | + - Command-line tool (part:cli) |
| 59 | + - Cookiecutter template (part:cookiecutter) |
| 60 | + - Tools to configure mkdocs (part:mkdocs) |
| 61 | + - Tools to configure nox (part:nox) |
| 62 | + - Tools to configure protobufs (part:protobuf) |
| 63 | + - Tools to configure the CI (part:ci) |
| 64 | + validations: |
| 65 | + required: true |
| 66 | + - type: textarea |
| 67 | + id: extra |
| 68 | + attributes: |
| 69 | + label: Extra information |
| 70 | + description: |
| 71 | + Please write here any extra information you think it might be relevant, |
| 72 | + e.g., if this didn't happen before, or if you suspect where the problem |
| 73 | + might be. |
| 74 | + placeholder: Any extra information you think it might be relevant. |
0 commit comments