Skip to content

Commit 8ea7d47

Browse files
committed
chore: use bug-report form template
1 parent 7052e18 commit 8ea7d47

File tree

2 files changed

+74
-79
lines changed

2 files changed

+74
-79
lines changed

.github/ISSUE_TEMPLATE/bug-report.md

Lines changed: 0 additions & 79 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
name: Bug Report
2+
description: File a bug report
3+
title: "[Bug]: "
4+
labels: ["bug", "triage"]
5+
body:
6+
- type: checkboxes
7+
attributes:
8+
label: Is there an existing issue for this?
9+
description: Please search to see if an issue already exists for the bug you encountered.
10+
options:
11+
- label: I have searched the existing issues
12+
required: true
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+
value: |
24+
- Web Browser:
25+
- Local OS:
26+
- Remote OS:
27+
- Remote Architecture:
28+
- `code-server --version`:
29+
render: markdown
30+
validations:
31+
required: false
32+
- type: textarea
33+
attributes:
34+
label: Expected
35+
description: What should happen?
36+
validations:
37+
required: true
38+
- type: textarea
39+
attributes:
40+
label: Actual
41+
description: What actually happens?
42+
validations:
43+
required: true
44+
- type: textarea
45+
id: logs
46+
attributes:
47+
label: Logs
48+
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`).
49+
- type: textarea
50+
attributes:
51+
label: Screenshot/Video
52+
description: Please include a screenshot, gif or screen recording of your issue.
53+
validations:
54+
required: false
55+
- type: checkboxes
56+
attributes:
57+
label: Does this issue happen in VS Code?
58+
description: Please try reproducing this issue in VS Code
59+
options:
60+
- label: I cannot reproduce this in VS Code.
61+
required: true
62+
- type: checkboxes
63+
attributes:
64+
label: Are you accessing code-server over HTTPS?
65+
description: code-server relies on service workers for many features. Double-check that you are using HTTPS.
66+
options:
67+
- label: I am using HTTPS.
68+
required: true
69+
- type: textarea
70+
attributes:
71+
label: Notes
72+
description: Please include any addition notes that will help us resolve this issue.
73+
validations:
74+
required: false

0 commit comments

Comments
 (0)