Skip to content

Commit e5c2d80

Browse files
committed
meta: use form schema for bug report template
PR-URL: #39194 Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Rich Trott <[email protected]>
1 parent c04fd2b commit e5c2d80

File tree

2 files changed

+45
-51
lines changed

2 files changed

+45
-51
lines changed

.github/ISSUE_TEMPLATE/1-bug-report.md

-51
This file was deleted.
+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
name: "\U0001F41B Bug report"
2+
description: Create a report to help us improve
3+
body:
4+
- type: markdown
5+
attributes:
6+
value: |
7+
Thank you for reporting an issue.
8+
9+
This issue tracker is for bugs and issues found within Node.js core.
10+
If you require more general support please file an issue on our help repo. https://github.com/nodejs/help
11+
12+
Please fill in as much of the form below as you're able.
13+
- type: input
14+
attributes:
15+
label: Version
16+
description: Output of `node -v`
17+
- type: input
18+
attributes:
19+
label: Platform
20+
description: |
21+
UNIX: output of `uname -a`
22+
Windows: output of `"$([Environment]::OSVersion | ForEach-Object VersionString) $(if ([Environment]::Is64BitOperatingSystem) { "x64" } else { "x86" })"` in PowerShell console
23+
- type: input
24+
attributes:
25+
label: Subsystem
26+
description: If known, please specify affected core module name
27+
- type: textarea
28+
attributes:
29+
label: What steps will reproduce the bug?
30+
description: Enter details about your bug, preferably a simple code snippet that can be run using `node` directly without installing third-party dependencies.
31+
- type: textarea
32+
attributes:
33+
label: How often does it reproduce? Is there a required condition?
34+
- type: textarea
35+
attributes:
36+
label: What is the expected behavior?
37+
description: If possible please provide textual output instead of screenshots.
38+
- type: textarea
39+
attributes:
40+
label: What do you see instead?
41+
description: If possible please provide textual output instead of screenshots.
42+
- type: textarea
43+
attributes:
44+
label: Additional information
45+
description: Tell us anything else you think we should know.

0 commit comments

Comments
 (0)