|
| 1 | +name: Bug report |
| 2 | +description: File a bug report |
| 3 | +labels: ["bug", "triage"] |
| 4 | +body: |
| 5 | + - type: checkboxes |
| 6 | + attributes: |
| 7 | + label: Is there an existing issue for this? |
| 8 | + description: Please search to see if an issue already exists for the bug you encountered. |
| 9 | + options: |
| 10 | + - label: I have searched the existing issues |
| 11 | + required: true |
| 12 | + |
| 13 | + - type: textarea |
| 14 | + attributes: |
| 15 | + label: OS/Web Information |
| 16 | + description: | |
| 17 | + examples: |
| 18 | + - **Web Browser**: Chrome |
| 19 | + - **Local OS**: macOS |
| 20 | + - **Remote OS**: Ubuntu |
| 21 | + - **Remote Architecture**: amd64 |
| 22 | + - **`code-server --version`**: 4.0.1 |
| 23 | +
|
| 24 | + Please do not just put "latest" for the version. |
| 25 | + value: | |
| 26 | + - Web Browser: |
| 27 | + - Local OS: |
| 28 | + - Remote OS: |
| 29 | + - Remote Architecture: |
| 30 | + - `code-server --version`: |
| 31 | + validations: |
| 32 | + required: true |
| 33 | + |
| 34 | + - type: textarea |
| 35 | + attributes: |
| 36 | + label: Steps to Reproduce |
| 37 | + description: | |
| 38 | + Please describe exactly how to reproduce the bug. For example: |
| 39 | + 1. Open code-server in Firefox |
| 40 | + 2. Install extension `foo.bar` from the extensions sidebar |
| 41 | + 3. Run command `foo.bar.baz` |
| 42 | + value: | |
| 43 | + 1. |
| 44 | + 2. |
| 45 | + 3. |
| 46 | + validations: |
| 47 | + required: true |
| 48 | + |
| 49 | + - type: textarea |
| 50 | + attributes: |
| 51 | + label: Expected |
| 52 | + description: What should happen? |
| 53 | + validations: |
| 54 | + required: true |
| 55 | + |
| 56 | + - type: textarea |
| 57 | + attributes: |
| 58 | + label: Actual |
| 59 | + description: What actually happens? |
| 60 | + validations: |
| 61 | + required: true |
| 62 | + |
| 63 | + - type: textarea |
| 64 | + id: logs |
| 65 | + attributes: |
| 66 | + label: Logs |
| 67 | + description: Run code-server with the --verbose flag and then paste any relevant logs from the server, from the browser console and/or the browser network tab. For issues with installation, include installation logs (i.e. output of `npm install -g code-server`). |
| 68 | + render: shell |
| 69 | + |
| 70 | + - type: textarea |
| 71 | + attributes: |
| 72 | + label: Screenshot/Video |
| 73 | + description: Please include a screenshot, gif or screen recording of your issue. |
| 74 | + validations: |
| 75 | + required: false |
| 76 | + |
| 77 | + - type: dropdown |
| 78 | + attributes: |
| 79 | + label: Does this bug reproduce in native VS Code? |
| 80 | + description: If the bug reproduces in native VS Code, submit the issue upstream instead (https://github.com/microsoft/vscode). |
| 81 | + options: |
| 82 | + - Yes, this is also broken in native VS Code |
| 83 | + - No, this works as expected in native VS Code |
| 84 | + - This cannot be tested in native VS Code |
| 85 | + - I did not test native VS Code |
| 86 | + validations: |
| 87 | + required: true |
| 88 | + |
| 89 | + - type: dropdown |
| 90 | + attributes: |
| 91 | + label: Does this bug reproduce in VS Code web? |
| 92 | + description: If the bug reproduces in VS Code web, submit the issue upstream instead (https://github.com/microsoft/vscode). You can run VS Code web with `code serve-web` (this is not the same as vscode.dev). |
| 93 | + options: |
| 94 | + - Yes, this is also broken in VS Code web |
| 95 | + - No, this works as expected in VS Code web |
| 96 | + - This cannot be tested in VS Code web |
| 97 | + - I did not test VS Code web |
| 98 | + validations: |
| 99 | + required: true |
| 100 | + |
| 101 | + - type: dropdown |
| 102 | + attributes: |
| 103 | + label: Does this bug reproduce in GitHub Codespaces? |
| 104 | + description: If the bug reproduces in GitHub Codespaces, submit the issue upstream instead (https://github.com/microsoft/vscode). |
| 105 | + options: |
| 106 | + - Yes, this is also broken in GitHub Codespaces |
| 107 | + - No, this works as expected in GitHub Codespaces |
| 108 | + - This cannot be tested in GitHub Codespaces |
| 109 | + - I did not test GitHub Codespaces |
| 110 | + validations: |
| 111 | + required: true |
| 112 | + |
| 113 | + - type: checkboxes |
| 114 | + attributes: |
| 115 | + label: Are you accessing code-server over a secure context? |
| 116 | + description: code-server relies on service workers (which only work in secure contexts) for many features. Double-check that you are using a secure context like HTTPS or localhost. |
| 117 | + options: |
| 118 | + - label: I am using a secure context. |
| 119 | + required: false |
| 120 | + |
| 121 | + - type: textarea |
| 122 | + attributes: |
| 123 | + label: Notes |
| 124 | + description: Please include any addition notes that will help us resolve this issue. |
| 125 | + validations: |
| 126 | + required: false |
0 commit comments