Skip to content

Commit d2d84e6

Browse files
authored
Add ISSUE_TEMPLATE, Add PULL_REQUEST_TEMPLATE, Update README.md (#27)
* Add ISSUE_TEMPLATE, Add PULL_REQUEST_TEMPLATE Added ISSUE_TEMPLATE Added 1-issue.yml Added 2-feature.yml Added 1-bug.yml Added PULL_REQUEST_TEMPLATE.md Refer to Issue #8. Signed-off-by: Murkeee <[email protected]> * Update README.md Added Video for pytest demo Closes #16. Signed-off-by: Murkeee <[email protected]> --------- Signed-off-by: Murkeee <[email protected]>
1 parent d4837b1 commit d2d84e6

File tree

5 files changed

+126
-0
lines changed

5 files changed

+126
-0
lines changed

.github/ISSUE_TEMPLATE/1-issue.yml

+33
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

.github/ISSUE_TEMPLATE/2-feature.yml

+23
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

+43
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

.github/PULL_REQUEST_TEMPLATE.md

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
**Description**
2+
3+
This PR fixes #
4+
5+
**Notes for Reviewers**
6+
7+
8+
**[Signed commits](https://docs.github.com/en/authentication/managing-commit-signature-verification/signing-commits)**
9+
- [ ] Yes, I signed my commits.
10+
11+
<!--
12+
Thank you for contributing to SkywardAI!
13+
14+
Contributing Conventions:
15+
16+
1. Include descriptive PR titles with [<component-name>] prepended.
17+
2. Build and test your changes before submitting a PR.
18+
3. Sign your commits
19+
20+
By following the community's contribution conventions upfront, the review process will
21+
be accelerated and your PR merged more quickly.
22+
-->

example/README.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11

22
# Demo for how to use openai API client to invoke voyager API
33

4+
### Example Video
5+
6+
https://github.com/user-attachments/assets/75d5d380-20df-4d88-b94a-19bc4fabc224
7+
8+
49
## Prerequisites
510

611
- Python 3.10^

0 commit comments

Comments
 (0)