|
| 1 | +# yaml-language-server: $schema=https://json.schemastore.org/github-issue-forms.json |
| 2 | +name: "Bug Report" |
| 3 | +description: "Report a bug." |
| 4 | +labels: |
| 5 | + - "bug 🐛" |
| 6 | +body: |
| 7 | + - type: "input" |
| 8 | + id: "version" |
| 9 | + attributes: |
| 10 | + label: "Version" |
| 11 | + description: |- |
| 12 | + Which version occur this bug? |
| 13 | +
|
| 14 | + Version must be supported as of submit; Supported versions are listed in the Security Policy (file `SECURITY.md`). |
| 15 | +
|
| 16 | + For multiple versions, separate each version with comma-space (`, `), or use versions range syntax from [OSGi Semantic Versioning](https://docs.osgi.org/whitepaper/semantic-versioning/040-semantic-versions.html) or [Semantic Versioning 2.0.0](https://devhints.io/semver). |
| 17 | + placeholder: "1.0.2" |
| 18 | + validations: |
| 19 | + required: true |
| 20 | + - type: "textarea" |
| 21 | + id: "describe" |
| 22 | + attributes: |
| 23 | + label: "Describe" |
| 24 | + description: |- |
| 25 | + What the bug is? |
| 26 | +
|
| 27 | + If needed, use images, videos, or other types of media to help for explain this bug; Not accept any external resource. |
| 28 | + placeholder: |- |
| 29 | + It unable to XXXXXXXX. |
| 30 | + validations: |
| 31 | + required: true |
| 32 | + - type: "textarea" |
| 33 | + id: "reproduce" |
| 34 | + attributes: |
| 35 | + label: "To Reproduce" |
| 36 | + description: |- |
| 37 | + Is this bug able to reproduce? If so, please show the steps to reproduce. |
| 38 | +
|
| 39 | + If needed, use images, videos, or other types of media to help for explain the steps to reproduce; Not accept any external resource. |
| 40 | + placeholder: |- |
| 41 | + 1. Go to XXXXXXXX. |
| 42 | + 2. Click on XXXXXXXX. |
| 43 | + 3. Scroll to XXXXXXXX. |
| 44 | + 4. Encounter this bug. |
| 45 | + validations: |
| 46 | + required: false |
| 47 | + - type: "dropdown" |
| 48 | + id: "frequency" |
| 49 | + attributes: |
| 50 | + label: "Frequency" |
| 51 | + description: |- |
| 52 | + How often does this bug occur? |
| 53 | + options: |
| 54 | + - "Unknown / Untested" |
| 55 | + - "Always (~100%)" |
| 56 | + - "Frequently (~75%)" |
| 57 | + - "Half (~50%)" |
| 58 | + - "Sometimes (~25%)" |
| 59 | + - "Rarely (~5%)" |
| 60 | + multiple: false |
| 61 | + default: 0 |
| 62 | + validations: |
| 63 | + required: true |
| 64 | + - type: "textarea" |
| 65 | + id: "environment" |
| 66 | + attributes: |
| 67 | + label: "Environment / Set Up" |
| 68 | + description: |- |
| 69 | + How is the environment/set-up? Different environments/set-ups maybe have different outcomes, provide this information maybe help for reproduce this bug. |
| 70 | +
|
| 71 | + These are common categories: |
| 72 | +
|
| 73 | + - **`type`:** Device type (e.g.: `computer`, `phone`, `server`). |
| 74 | + - **`cpu`:** Details of the central processing unit (e.g.: `Intel i7-6700`). |
| 75 | + - **`ram`:** Details of the random access memory (e.g.: `8 GB`). |
| 76 | + - **`storage`:** Details of the storage unit (e.g.: `500 GB SSD`). |
| 77 | + - **`network`:** Details of the network (e.g.: `Wi-Fi`). |
| 78 | + - **`gpu`:** Details of the graphics processing unit (e.g.: `NVIDIA GeForce RTX 4090`). |
| 79 | + - **`os`:** Details of the operate system (e.g.: `Windows 11 Professional 23H2 X64`). |
| 80 | + - **`programs`:** List of the installed programs (e.g.: `NodeJS 20.6.0 X64`, `Deno 1.36.0 X64`). |
| 81 | + - **`env`:** List of the environment variables (e.g.: `NO_COLOR=1`). |
| 82 | +
|
| 83 | + **[🖌️ YAML]** |
| 84 | + render: "yml" |
| 85 | + placeholder: |- |
| 86 | + type: [computer, server] |
| 87 | + os: Windows 11 Professional 23H2 X64 |
| 88 | + programs: Deno 1.36.0 X64 |
| 89 | + validations: |
| 90 | + required: false |
| 91 | + - type: "textarea" |
| 92 | + id: "additional" |
| 93 | + attributes: |
| 94 | + label: "Additional" |
| 95 | + description: |- |
| 96 | + Information which relevant to this bug but not suitable at other fields. |
| 97 | + validations: |
| 98 | + required: false |
0 commit comments