From e69f8bf64ffc02c0b55b9967afa072b1df5f3a4c Mon Sep 17 00:00:00 2001 From: Dave Fellows Date: Tue, 26 Mar 2024 09:39:30 +1300 Subject: [PATCH 1/3] fix: Fix typo in Makefile (#315) I'm assuming this should be `.PHONY` not `.PHONE` Signed-off-by: Dave Fellows --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c3bfe3385..f02db04bf 100644 --- a/Makefile +++ b/Makefile @@ -187,7 +187,7 @@ ifndef ignore-not-found endif ##@ gpu-provider -.PHONE: gpu-provisioner-identity-perm +.PHONY: gpu-provisioner-identity-perm gpu-provisioner-identity-perm: ## Create identity for gpu-provisioner az identity create --name gpuIdentity --resource-group $(AZURE_RESOURCE_GROUP) From 10af81a5b64f272718e3f107f1dbcd717d914d4e Mon Sep 17 00:00:00 2001 From: Fei Guo Date: Mon, 25 Mar 2024 13:55:42 -0700 Subject: [PATCH 2/3] docs: Update README.md to correct the mail list (#317) Correct the mail list name. Fix issue #314 Signed-off-by: Fei Guo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f022b3618..6678ecd54 100644 --- a/README.md +++ b/README.md @@ -152,4 +152,4 @@ This project has adopted the [Microsoft Open Source Code of Conduct](https://ope ## Contact -"Kaito devs" +"Kaito devs" From 2f0323adfaa510f15b2299aed1f3f2226aa8b3bd Mon Sep 17 00:00:00 2001 From: Heba <31887807+helayoty@users.noreply.github.com> Date: Mon, 25 Mar 2024 21:13:53 -0700 Subject: [PATCH 3/3] chore: Add GitHub issue/PR templates (#316) - Add report bug template - Add feature request template - Add PR template Signed-off-by: Heba Elayoty --- .github/ISSUE_TEMPLATE/feature_request.md | 16 +++++++++++++++ .github/ISSUE_TEMPLATE/report_bug.md | 25 +++++++++++++++++++++++ .github/PULL_REQUEST_TEMPLATE.md | 11 ++++++++++ 3 files changed, 52 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/ISSUE_TEMPLATE/report_bug.md create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 000000000..4239464fb --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,16 @@ +--- +name: Feature request +about: Suggest a new feature for Kaito +title: '' +labels: 'enhancement' +assignees: '' + +--- + +**Is your feature request related to a problem? Please describe.** + +**Describe the solution you'd like** + +**Describe alternatives you've considered** + +**Additional context** \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/report_bug.md b/.github/ISSUE_TEMPLATE/report_bug.md new file mode 100644 index 000000000..0d3dff0e8 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/report_bug.md @@ -0,0 +1,25 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: 'bug' +assignees: '' + +--- + +**Describe the bug** + +**Steps To Reproduce** + +**Expected behavior** + +**Logs** + +**Environment** + +- Kubernetes version (use `kubectl version`): +- OS (e.g: `cat /etc/os-release`): +- Install tools: +- Others: + +**Additional context** \ No newline at end of file diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 000000000..272b76da7 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,11 @@ +**Reason for Change**: + + +**Requirements** + +- [ ] added unit tests and e2e tests (if applicable). + +**Issue Fixed**: + + +**Notes for Reviewers**: \ No newline at end of file