Skip to content

Commit d0d6e83

Browse files
authoredMay 23, 2022
chore: use github form syntax for better issue templates (#637)
1 parent 7ce4e9a commit d0d6e83

File tree

4 files changed

+52
-57
lines changed

4 files changed

+52
-57
lines changed
 

‎.github/ISSUE_TEMPLATE/bug_report.md

-34
This file was deleted.

‎.github/ISSUE_TEMPLATE/bug_report.yml

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Bug report
2+
description: File a bug against the `uuid` project
3+
labels: ["bug"]
4+
title: "[BUG] <title>"
5+
6+
body:
7+
- type: checkboxes
8+
attributes:
9+
label: Before you begin...
10+
options:
11+
- label: I have searched the existing issues
12+
required: true
13+
- label: I am not using version 13.x of node (if so, please upgrade)
14+
required: true
15+
16+
- type: textarea
17+
attributes:
18+
label: Description of the problem
19+
validations:
20+
required: false
21+
22+
- type: textarea
23+
attributes:
24+
label: Recipe for reproducing
25+
description: "**IMPORTANT**: Failure to provide a [Minimal, Complete, and Verifiable](https://stackoverflow.com/help/minimal-reproducible-example) example will result in this issue being closed without further review."
26+
render: bash
27+
validations:
28+
required: false
29+
30+
- type: textarea
31+
attributes:
32+
label: Additional information
33+
34+
- type: textarea
35+
attributes:
36+
label: Environment
37+
description: "Output of `npx envinfo --system --browsers --npmPackages --binaries` goes here:"
38+
validations:
39+
required: false

‎.github/ISSUE_TEMPLATE/feature_request.md

-23
This file was deleted.
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Feature request
2+
description: Suggest an idea for this project
3+
labels: ["feature"]
4+
5+
body:
6+
- type: textarea
7+
attributes:
8+
label: Feature description
9+
10+
- type: textarea
11+
attributes:
12+
label: Additional information
13+
description: E.g. alternatives you've considered, examples, screenshots, or anything else that may be helpful

0 commit comments

Comments
 (0)
Please sign in to comment.