Skip to content

Commit b08a0e8

Browse files
chore: move non-cloud package to staging bucket (#125)
* chore: move non-cloud package to staging bucket * chore: update Kokoro config * chore: update Owlbot.py * 🦉 Updates from OwlBot See https://github.com/googleapis/repo-automation-bots/blob/master/packages/owl-bot/README.md * 🦉 Updates from OwlBot See https://github.com/googleapis/repo-automation-bots/blob/master/packages/owl-bot/README.md Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent 1fb4014 commit b08a0e8

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

.kokoro/docs/common.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ env_vars: {
3030

3131
env_vars: {
3232
key: "V2_STAGING_BUCKET"
33-
value: "docs-staging-v2"
33+
value: "docs-staging-v2-staging"
3434
}
3535

3636
# It will upload the docker image after successful builds.

owlbot.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@
1111
unit_test_external_dependencies=["click"],
1212
unit_test_python_versions=["3.6", "3.7", "3.8", "3.9"],
1313
)
14-
s.move(templated_files, excludes=["docs/multiprocessing.rst"])
14+
s.move(templated_files, excludes=[
15+
"docs/multiprocessing.rst"
16+
])
1517

1618
# Change black paths
1719
s.replace(
@@ -33,4 +35,11 @@
3335
'"--cov=google_auth_oauthlib",',
3436
)
3537

38+
# Block pushing non-cloud libraries to Cloud RAD
39+
s.replace(
40+
".kokoro/docs/common.cfg",
41+
r'value: "docs-staging-v2"',
42+
r'value: "docs-staging-v2-staging"'
43+
)
44+
3645
s.shell.run(["nox", "-s", "blacken"], hide_output=False)

0 commit comments

Comments
 (0)