Skip to content
This repository was archived by the owner on Mar 11, 2026. It is now read-only.

Commit 807ce75

Browse files
committed
build: update README for deprecation notice
1 parent 9cfdde7 commit 807ce75

2 files changed

Lines changed: 8 additions & 58 deletions

File tree

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
**_THIS REPOSITORY IS DEPRECATED. ALL OF ITS CONTENT AND HISTORY HAS BEEN MOVED TO [GOOGLE-CLOUD-NODE](https://github.com/googleapis/google-cloud-node/tree/main/packages/handwritten)_**
2+
13
[//]: # "This README.md file is auto-generated, all changes to this file will be lost."
24
[//]: # "To regenerate it, use `python -m synthtool`."
35
<img src="https://avatars2.githubusercontent.com/u/2810941?v=3&s=96" alt="Google Cloud Platform logo" title="Google Cloud Platform" align="right" height="96" width="96"/>

owlbot.py

Lines changed: 6 additions & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -1,69 +1,17 @@
1-
# Copyright 2018 Google LLC
1+
# Copyright 2022 Google LLC
22
#
3-
# Licensed under the Apache License, Version 2.0 (the "License");
3+
# Licensed under the Apache License, Version 2.0 (the License);
44
# you may not use this file except in compliance with the License.
55
# You may obtain a copy of the License at
66
#
7-
# http://www.apache.org/licenses/LICENSE-2.0
7+
# https://www.apache.org/licenses/LICENSE-2.0
88
#
99
# Unless required by applicable law or agreed to in writing, software
1010
# distributed under the License is distributed on an "AS IS" BASIS,
1111
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
14-
15-
"""This script is used to synthesize generated parts of this library."""
16-
17-
import os
18-
import synthtool as s
1914
import synthtool.languages.node as node
20-
21-
node.owlbot_main(
22-
staging_excludes=[
23-
".eslintignore", ".prettierignore", "src/index.ts", "README.md", "package.json",
24-
"system-test/fixtures/sample/src/index.js",
25-
"system-test/fixtures/sample/src/index.ts"],
26-
templates_excludes=[
27-
"src/index.ts",
28-
".eslintignore",
29-
".prettierignore",
30-
"CONTRIBUTING.md",
31-
".github/auto-label.yaml",
32-
".github/release-please.yml",
33-
".github/CODEOWNERS",
34-
".github/sync-repo-settings.yaml"
35-
]
36-
)
37-
38-
# adjust .trampolinerc for environment tests
39-
s.replace(
40-
".trampolinerc",
41-
"required_envvars[^\)]*\)",
42-
"required_envvars+=()"
43-
)
44-
s.replace(
45-
".trampolinerc",
46-
"pass_down_envvars\+\=\(",
47-
'pass_down_envvars+=(\n "ENVIRONMENT"\n "RUNTIME"'
48-
)
49-
50-
# --------------------------------------------------------------------------
51-
# Modify test configs
52-
# --------------------------------------------------------------------------
53-
54-
# add shared environment variables to test configs
55-
s.move(
56-
".kokoro/common_env_vars.cfg",
57-
".kokoro/common.cfg",
58-
merge=lambda src, dst, _, : f"{dst}\n{src}",
59-
)
60-
61-
for path, subdirs, files in os.walk(f".kokoro/continuous"):
62-
for name in files:
63-
if name == "common.cfg":
64-
file_path = os.path.join(path, name)
65-
s.move(
66-
".kokoro/common_env_vars.cfg",
67-
file_path,
68-
merge=lambda src, dst, _, : f"{dst}\n{src}",
69-
)
15+
node.owlbot_main(templates_excludes=[
16+
'README.md'
17+
])

0 commit comments

Comments
 (0)