d0215eca88
These checkboxes keep getting checked despite the submitter using an insecure context or not having tested upstream. I think two things are at play here: 1. Folks might be interpreting "cannot reproduce" as "did not reproduce" or "did not have time to reproduce". 2. The checkboxes are required to submit the issue so folks might be marking them just so they can get their issue submitted; maybe they are not even reading the checkboxes and are just seeing the error that they need to be marked and blindly marking them because while in some cases folks will add "I had to check this but it is not true", usually they say nothing. In any case, hopefully these changes make the checkboxes more accurate, and then if they are unchecked we can ask them to go reproduce in VS Code or use a secure context or whatever the case may be.
93 lines
3.1 KiB
YAML
93 lines
3.1 KiB
YAML
name: Bug report
|
|
description: File a bug report
|
|
title: "[Bug]: "
|
|
labels: ["bug", "triage"]
|
|
body:
|
|
- type: checkboxes
|
|
attributes:
|
|
label: Is there an existing issue for this?
|
|
description: Please search to see if an issue already exists for the bug you encountered.
|
|
options:
|
|
- label: I have searched the existing issues
|
|
required: true
|
|
- type: textarea
|
|
attributes:
|
|
label: OS/Web Information
|
|
description: |
|
|
examples:
|
|
- **Web Browser**: Chrome
|
|
- **Local OS**: macOS
|
|
- **Remote OS**: Ubuntu
|
|
- **Remote Architecture**: amd64
|
|
- **`code-server --version`**: 4.0.1
|
|
value: |
|
|
- Web Browser:
|
|
- Local OS:
|
|
- Remote OS:
|
|
- Remote Architecture:
|
|
- `code-server --version`:
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
attributes:
|
|
label: Steps to Reproduce
|
|
description: |
|
|
1. open code-server
|
|
2. install extension
|
|
3. run command
|
|
value: |
|
|
1.
|
|
2.
|
|
3.
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
attributes:
|
|
label: Expected
|
|
description: What should happen?
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
attributes:
|
|
label: Actual
|
|
description: What actually happens?
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: logs
|
|
attributes:
|
|
label: Logs
|
|
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 `yarn global add code-server`).
|
|
- type: textarea
|
|
attributes:
|
|
label: Screenshot/Video
|
|
description: Please include a screenshot, gif or screen recording of your issue.
|
|
validations:
|
|
required: false
|
|
- type: checkboxes
|
|
attributes:
|
|
label: Does this issue happen in VS Code or GitHub Codespaces?
|
|
description: Please try reproducing this issue in VS Code and GitHub Codespaces. If the bug reproduces in either VS Code or GitHub Codespaces, please submit the issue upstream instead (https://github.com/microsoft/vscode).
|
|
options:
|
|
- label: I tested this in native VS Code.
|
|
required: false
|
|
- label: This does not happen in native VS Code.
|
|
required: false
|
|
- label: I tested this in GitHub Codespaces.
|
|
required: false
|
|
- label: This does not happen in GitHub Codespaces.
|
|
required: false
|
|
- type: checkboxes
|
|
attributes:
|
|
label: Are you accessing code-server over a secure context?
|
|
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.
|
|
options:
|
|
- label: I am using a secure context.
|
|
required: false
|
|
- type: textarea
|
|
attributes:
|
|
label: Notes
|
|
description: Please include any addition notes that will help us resolve this issue.
|
|
validations:
|
|
required: false
|