Skip to content

fix: Add genappbuilder to CODEOWNERS #9866

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
May 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
/dataproc/**/* @GoogleCloudPlatform/dee-data-ai @GoogleCloudPlatform/python-samples-reviewers
/dialogflow/**/* @GoogleCloudPlatform/dee-data-ai @GoogleCloudPlatform/python-samples-reviewers
/dialogflow-cx/**/* @GoogleCloudPlatform/dee-data-ai @GoogleCloudPlatform/python-samples-reviewers
/discoveryengine/**/* @GoogleCloudPlatform/dee-data-ai @GoogleCloudPlatform/python-samples-reviewers
/documentai/**/* @GoogleCloudPlatform/dee-data-ai @GoogleCloudPlatform/python-samples-reviewers
/enterpriseknowledgegraph/**/* @GoogleCloudPlatform/dee-data-ai @GoogleCloudPlatform/python-samples-reviewers
/jobs/**/* @GoogleCloudPlatform/dee-data-ai @GoogleCloudPlatform/python-samples-reviewers
Expand Down
1 change: 1 addition & 0 deletions .github/auto-label.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ path:
dataproc: "dataproc"
datastore: "datastore"
dialogflow: "dialogflow"
discoveryengine: "discoveryengine"
dlp: "dlp"
dns: "dns"
documentai: "documentai"
Expand Down
2 changes: 1 addition & 1 deletion .github/blunderbuss.yml
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,7 @@ assign_prs_by:
- "api: dataproc"
- "api: dialogflow"
- "api: enterpriseknowledgegraph"
- "api: discoveryengine"
- "api: language"
- "api: ml"
- "api: notebooks"
Expand Down Expand Up @@ -298,4 +299,3 @@ assign_prs:
###
# Updates should be made to both assign_issues_by & assign_prs_by sections
###

File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@

import os

from genappbuilder import import_documents_sample
from genappbuilder import list_documents_sample
from discoveryengine import import_documents_sample
from discoveryengine import list_documents_sample

project_id = os.environ["GOOGLE_CLOUD_PROJECT"]
location = "global"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@

import os

from genappbuilder import get_operation_sample
from genappbuilder import list_operations_sample
from genappbuilder import poll_operation_sample
from discoveryengine import get_operation_sample
from discoveryengine import list_operations_sample
from discoveryengine import poll_operation_sample

from google.api_core.exceptions import NotFound

Expand Down
2 changes: 2 additions & 0 deletions discoveryengine/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
google-cloud-discoveryengine==0.6.0
google-api-core==2.11.0
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

import os

from genappbuilder import search_sample
from discoveryengine import search_sample

project_id = os.environ["GOOGLE_CLOUD_PROJECT"]
location = "global"
Expand Down
2 changes: 0 additions & 2 deletions genappbuilder/requirements.txt

This file was deleted.