Skip to content

Commit 080ce81

Browse files
committed
Replace old syle MD with new style YAML forms syntax
1 parent 7ae5b5b commit 080ce81

File tree

6 files changed

+97
-58
lines changed

6 files changed

+97
-58
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 30 deletions
This file was deleted.
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
name: Report a Bug
2+
description: File a bug/issue
3+
title: "<title>"
4+
labels: ["Bug"]
5+
body:
6+
- type: textarea
7+
attributes:
8+
label: Current Behavior
9+
description: A clear and concise description of what the bug is..
10+
validations:
11+
required: true
12+
- type: textarea
13+
attributes:
14+
label: Expected Behavior
15+
description: A clear and concise description of what you expected to happen.
16+
validations:
17+
required: true
18+
- type: textarea
19+
attributes:
20+
label: Steps To Reproduce
21+
description: Steps to reproduce the behavior.
22+
placeholder: |
23+
1. Go to '...'
24+
1. Click on '...'
25+
1. Scroll down to '...'
26+
1. See error
27+
validations:
28+
required: true
29+
- type: textarea
30+
attributes:
31+
label: Screenshots
32+
description: |
33+
If appropriate, please share any screenshots of the bug.
34+
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
35+
validations:
36+
required: false
37+
- type: textarea
38+
attributes:
39+
label: Environment
40+
description: |
41+
Please share the following information, if applicable. For example:
42+
- **OS**: Ubuntu 20.04
43+
- **Browser**: Firefox 133.0.3
44+
value: |
45+
- OS:
46+
- Browser:
47+
render: markdown
48+
validations:
49+
required: false
50+
- type: textarea
51+
attributes:
52+
label: Anything else?
53+
description: |
54+
Any additional context about the problem here.
55+
validations:
56+
required: false

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 27 deletions
This file was deleted.
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: Feature Request
2+
description: Suggest a new idea for this project
3+
title: "<title>"
4+
labels: ["enhancement"]
5+
body:
6+
- type: textarea
7+
attributes:
8+
label: Purpose
9+
description: What will this feature provide?
10+
validations:
11+
required: true
12+
- type: textarea
13+
attributes:
14+
label: Is your feature request related to a problem? Please describe.
15+
description: A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
16+
validations:
17+
required: false
18+
- type: textarea
19+
attributes:
20+
label: Proposed Solution
21+
description: If you have an idea on how to implement this feature, please share!
22+
validations:
23+
required: false
24+
- type: textarea
25+
attributes:
26+
label: Acceptance Criteria
27+
description: Please list the requirements the implementation of this feature needs to meet.
28+
placeholder: |
29+
- This feature should do [xyz]
30+
- This feature should do [abc]
31+
validations:
32+
required: true
33+
- type: textarea
34+
attributes:
35+
label: Additional Context
36+
description: |
37+
Add any other context or screenshots here.
38+
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.

.github/pull_request_template.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
## What issue is this solving?
22

33
<!-- replace ??? with the issue number. This will ensure the related issue is automatically closed when the PR is merged. -->
4+
45
Closes #???
56

67
### Description
8+
79
<!-- Brief description of change -->
810

911
<!-- Add any additional expected behavior here if it is not described in the linked issue. -->

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Logs
1+
git# Logs
22
logs
33
*.log
44
npm-debug.log*

0 commit comments

Comments
 (0)