From 2f73f49f62194b38cd7afe74c9d0b43ee9c89eb7 Mon Sep 17 00:00:00 2001 From: feywind <57276408+feywind@users.noreply.github.com> Date: Mon, 20 Jul 2026 15:43:12 -0400 Subject: [PATCH 1/3] feat: remove bigquery owlbot and set up a package.json script to do what it did --- handwritten/bigquery/.OwlBot.yaml | 17 ----------------- handwritten/bigquery/package.json | 3 ++- 2 files changed, 2 insertions(+), 18 deletions(-) delete mode 100644 handwritten/bigquery/.OwlBot.yaml diff --git a/handwritten/bigquery/.OwlBot.yaml b/handwritten/bigquery/.OwlBot.yaml deleted file mode 100644 index 46bbeee9f9f4..000000000000 --- a/handwritten/bigquery/.OwlBot.yaml +++ /dev/null @@ -1,17 +0,0 @@ -# Copyright 2021 Google LLC -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - - -begin-after-commit-hash: 397c0bfd367a2427104f988d5329bc117caafd95 - diff --git a/handwritten/bigquery/package.json b/handwritten/bigquery/package.json index 2c1aad583949..d894c4ff8af0 100644 --- a/handwritten/bigquery/package.json +++ b/handwritten/bigquery/package.json @@ -47,7 +47,8 @@ "pretest": "npm run compile", "types": "node scripts/gen-types.js", "prelint": "cd samples; npm link ../; npm install", - "precompile": "gts clean" + "precompile": "gts clean", + "types-ci": "npm i && npm run types" }, "dependencies": { "@google-cloud/common": "^6.0.0", From 5a7adde2c47aa0540c7702ea4a68733aa0d224b5 Mon Sep 17 00:00:00 2001 From: feywind <57276408+feywind@users.noreply.github.com> Date: Wed, 22 Jul 2026 14:55:07 -0400 Subject: [PATCH 2/3] build: remove owlbot.py, it's being handled by a github action --- handwritten/bigquery/owlbot.py | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 handwritten/bigquery/owlbot.py diff --git a/handwritten/bigquery/owlbot.py b/handwritten/bigquery/owlbot.py deleted file mode 100644 index 71a8c63dca58..000000000000 --- a/handwritten/bigquery/owlbot.py +++ /dev/null @@ -1,24 +0,0 @@ -# Copyright 2022 Google LLC -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -"""This script is used to synthesize generated parts of this library.""" - -import synthtool.languages.node_mono_repo as node -from synthtool import shell - -node.owlbot_main(relative_dir="handwritten/bigquery") - -# Install dependencies and regenerate Discovery types. -shell.run(('npm', 'install'), cwd='handwritten/bigquery') -shell.run(('npm', 'run', 'types'), cwd='handwritten/bigquery') From e7e2242763432fa02aaa7edd512b5ec3c8b3d707 Mon Sep 17 00:00:00 2001 From: feywind <57276408+feywind@users.noreply.github.com> Date: Wed, 22 Jul 2026 14:55:26 -0400 Subject: [PATCH 3/3] build: we don't need the types-ci script after all --- handwritten/bigquery/package.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/handwritten/bigquery/package.json b/handwritten/bigquery/package.json index d894c4ff8af0..2c1aad583949 100644 --- a/handwritten/bigquery/package.json +++ b/handwritten/bigquery/package.json @@ -47,8 +47,7 @@ "pretest": "npm run compile", "types": "node scripts/gen-types.js", "prelint": "cd samples; npm link ../; npm install", - "precompile": "gts clean", - "types-ci": "npm i && npm run types" + "precompile": "gts clean" }, "dependencies": { "@google-cloud/common": "^6.0.0",