Skip to content

Commit 61be56f

Browse files
feat: Turtle Issue Templates ( Fixes #177 )
1 parent dbd7577 commit 61be56f

File tree

3 files changed

+91
-0
lines changed

3 files changed

+91
-0
lines changed

.github/ISSUE_TEMPLATE/Bug.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Bug Report
2+
description: Report a Problem
3+
title: "[Bug]: "
4+
labels: ["bug"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
What's broken? Let's get some info and get it fixed.
10+
- type: textarea
11+
id: Description
12+
attributes:
13+
label: Description
14+
description: Describe what's wrong.
15+
validations:
16+
required: true
17+
- type: textarea
18+
id: ReproSteps
19+
attributes:
20+
label: Reproducable Steps
21+
description: A script that would generate the error
22+
render: PowerShell
23+
validations:
24+
required: false
25+
- type: textarea
26+
id: Links
27+
attributes:
28+
label: Links
29+
description: Any related links.
30+
validations:
31+
required: false
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Enhancement
2+
description: Request an Enhancement
3+
labels: ["enhancement"]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
What do you want to do? Let's get some info and make it happen
9+
- type: textarea
10+
id: Description
11+
attributes:
12+
label: Description
13+
description: Describe what you would like to see.
14+
validations:
15+
required: true
16+
- type: textarea
17+
id: Suggestion
18+
attributes:
19+
label: Suggested Script
20+
description: Any script you would suggest to solve the problem
21+
render: PowerShell
22+
validations:
23+
required: false
24+
- type: textarea
25+
id: Links
26+
attributes:
27+
label: Links
28+
description: Any related links.
29+
validations:
30+
required: false

.github/ISSUE_TEMPLATE/Example.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Example
2+
description: Add an Example
3+
labels: ["documentation"]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Share your example
9+
- type: textarea
10+
id: Description
11+
attributes:
12+
label: Description
13+
description: Describe your example
14+
validations:
15+
required: true
16+
- type: textarea
17+
id: sampleCode
18+
attributes:
19+
label: Sample Code
20+
description: Your Sample Code
21+
render: PowerShell
22+
validations:
23+
required: true
24+
- type: textarea
25+
id: Links
26+
attributes:
27+
label: Links
28+
description: Any related links.
29+
validations:
30+
required: false

0 commit comments

Comments
 (0)