Skip to content

Commit 9c4ee62

Browse files
committed
Switching to YAML templates
1 parent 90e21a8 commit 9c4ee62

File tree

2 files changed

+79
-1
lines changed

2 files changed

+79
-1
lines changed
Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
---
2+
name: Bug report
3+
description: Create a bug report
4+
title: "[Bug]: "
5+
labels:
6+
- bug
7+
assignees:
8+
- thomasleplus
9+
body:
10+
- type: markdown
11+
attributes:
12+
value: |
13+
Thanks for taking the time to fill out this bug report!
14+
- type: checkboxes
15+
attributes:
16+
label: Is there an existing issue for this?
17+
description: Search to see if an issue already exists for the bug you encountered.
18+
options:
19+
- label: I have searched the existing issues
20+
required: true
21+
- type: textarea
22+
attributes:
23+
label: Current Behavior
24+
description: A concise description of what you're experiencing.
25+
validations:
26+
required: true
27+
- type: textarea
28+
attributes:
29+
label: Expected Behavior
30+
description: A concise description of what you expected to happen.
31+
validations:
32+
required: true
33+
- type: textarea
34+
attributes:
35+
label: version
36+
description: |
37+
Version where you observed this issue
38+
placeholder: |
39+
vX.Y.Z
40+
render: markdown
41+
validations:
42+
required: true
43+
- type: textarea
44+
id: logs
45+
attributes:
46+
label: Relevant log output
47+
description: |
48+
Copy and paste any relevant log output.
49+
This will be automatically formatted into code, so no need for backticks.
50+
Enable debug logging, either on GitHub Actions, or when running locally.
51+
render: shell
52+
validations:
53+
required: true
54+
- type: textarea
55+
attributes:
56+
label: Steps To Reproduce
57+
description: |
58+
Steps to reproduce the issue.
59+
placeholder: |
60+
1. In this environment...
61+
1. With this config...
62+
1. Run '...'
63+
1. See error...
64+
validations:
65+
required: true
66+
- type: textarea
67+
attributes:
68+
label: Anything else?
69+
description: |
70+
Links? References? Anything that will give us more context about the issue you are encountering!
71+
72+
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
73+
validations:
74+
required: false

.github/ISSUE_TEMPLATE/feature_request.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ labels:
77
assignees:
88
- thomasleplus
99
body:
10+
- type: markdown
11+
attributes:
12+
value: |
13+
Thanks for taking the time to fill out this feature request!
1014
- type: textarea
1115
attributes:
1216
label: Feature description
@@ -17,7 +21,7 @@ body:
1721
required: true
1822
- type: textarea
1923
attributes:
20-
label: Implementation details
24+
label: Anything else?
2125
description: |
2226
If you think that there are some implementation details to be taken into consideration, or anything that is not obvious from the previous description, please specify it here.
2327

0 commit comments

Comments
 (0)