Skip to content

Commit 19db560

Browse files
committed
add issue templates
Signed-off-by: cbh778899 <[email protected]>
1 parent 8c4bab0 commit 19db560

File tree

3 files changed

+99
-0
lines changed

3 files changed

+99
-0
lines changed

.github/ISSUE_TEMPLATE/1-issue.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Issue Report
2+
description: File an issue report.
3+
title: "[Issue]: "
4+
labels: ["issue"]
5+
projects: ["SkywardAI/voyager"]
6+
assignees:
7+
-
8+
body:
9+
- type: markdown
10+
attributes:
11+
value: |
12+
Thanks for taking the time to fill out this issue report.
13+
- type: input
14+
id: contact
15+
attributes:
16+
label: Contact Details(optional)
17+
description: How can we get in touch with you if we need more info?
18+
placeholder: ex. [email protected]
19+
validations:
20+
required: false
21+
- type: textarea
22+
id: what-happened
23+
attributes:
24+
label: What is the issue you are having?
25+
placeholder: Tell us your issue.
26+
validations:
27+
required: true
28+
- type: textarea
29+
id: logs
30+
attributes:
31+
label: Relevant log output
32+
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
33+
render: shell
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Feature Request
2+
description: File a feature request.
3+
title: "[Feature]: "
4+
labels: ["feature", "improvement"]
5+
projects: ["SkywardAI/voyager"]
6+
assignees:
7+
-
8+
body:
9+
- type: input
10+
id: contact
11+
attributes:
12+
label: Contact Details(optional)
13+
description: How can we get in touch with you if we need more info?
14+
placeholder: ex. [email protected]
15+
validations:
16+
required: false
17+
- type: textarea
18+
id: description
19+
attributes:
20+
label: What feature are you requesting?
21+
placeholder: Tell us what your feature.
22+
validations:
23+
required: true

.github/ISSUE_TEMPLATE/3-bug.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: Bug Report
2+
description: File a bug report.
3+
title: "[Bug]: "
4+
labels: ["bug"]
5+
projects: ["SkywardAI/voyager"]
6+
assignees:
7+
-
8+
body:
9+
- type: markdown
10+
attributes:
11+
value: |
12+
Thanks for taking the time to fill out this bug report.
13+
- type: input
14+
id: contact
15+
attributes:
16+
label: Contact Details(optional)
17+
description: How can we get in touch with you if we need more info?
18+
placeholder: ex. [email protected]
19+
validations:
20+
required: false
21+
- type: textarea
22+
id: what-happened
23+
attributes:
24+
label: What happened?
25+
description: Also tell us, what did you expect to happen?
26+
placeholder: Tell us what happened.
27+
validations:
28+
required: true
29+
- type: textarea
30+
id: version
31+
attributes:
32+
label: Version
33+
description: What version of our software are you running?
34+
placeholder: Tell us your software version
35+
value: "Example: 0.2.4"
36+
validations:
37+
required: true
38+
- type: textarea
39+
id: logs
40+
attributes:
41+
label: Relevant log output
42+
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
43+
render: shell

0 commit comments

Comments
 (0)