Skip to content

Commit e7c8d70

Browse files
committed
chore: rename repo from python-common to python-cloud-common
1 parent b5c1d62 commit e7c8d70

File tree

25 files changed

+46
-46
lines changed

25 files changed

+46
-46
lines changed

packages/google-cloud-common/.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Thanks for stopping by to let us know something could be better!
1010

1111
Please run down the following list and make sure you've tried the usual "quick fixes":
1212

13-
- Search the issues already opened: https://github.com/googleapis/python-common/issues
13+
- Search the issues already opened: https://github.com/googleapis/python-cloud-common/issues
1414
- Search StackOverflow: https://stackoverflow.com/questions/tagged/google-cloud-platform+python
1515

1616
If you are still having issues, please be sure to include as much information as possible:

packages/google-cloud-common/.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly:
2-
- [ ] Make sure to open an issue as a [bug/issue](https://github.com/googleapis/python-common/issues/new/choose) before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea
2+
- [ ] Make sure to open an issue as a [bug/issue](https://github.com/googleapis/python-cloud-common/issues/new/choose) before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea
33
- [ ] Ensure the tests and linter pass
44
- [ ] Code coverage does not decrease (if any source code was changed)
55
- [ ] Appropriate docs were updated (if necessary)

packages/google-cloud-common/.kokoro/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
set -eo pipefail
1717

1818
if [[ -z "${PROJECT_ROOT:-}" ]]; then
19-
PROJECT_ROOT="github/python-common"
19+
PROJECT_ROOT="github/python-cloud-common"
2020
fi
2121

2222
cd "${PROJECT_ROOT}"

packages/google-cloud-common/.kokoro/continuous/common.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ gfile_resources: "/bigstore/cloud-devrel-kokoro-resources/trampoline"
1414
gfile_resources: "/bigstore/cloud-devrel-kokoro-resources/google-cloud-python"
1515

1616
# Use the trampoline script to run in docker.
17-
build_file: "python-common/.kokoro/trampoline.sh"
17+
build_file: "python-cloud-common/.kokoro/trampoline.sh"
1818

1919
# Configure the docker image for kokoro-trampoline.
2020
env_vars: {
@@ -23,5 +23,5 @@ env_vars: {
2323
}
2424
env_vars: {
2525
key: "TRAMPOLINE_BUILD_FILE"
26-
value: "github/python-common/.kokoro/build.sh"
26+
value: "github/python-cloud-common/.kokoro/build.sh"
2727
}

packages/google-cloud-common/.kokoro/docs/common.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ action {
1111
gfile_resources: "/bigstore/cloud-devrel-kokoro-resources/trampoline"
1212

1313
# Use the trampoline script to run in docker.
14-
build_file: "python-common/.kokoro/trampoline_v2.sh"
14+
build_file: "python-cloud-common/.kokoro/trampoline_v2.sh"
1515

1616
# Configure the docker image for kokoro-trampoline.
1717
env_vars: {
@@ -20,7 +20,7 @@ env_vars: {
2020
}
2121
env_vars: {
2222
key: "TRAMPOLINE_BUILD_FILE"
23-
value: "github/python-common/.kokoro/publish-docs.sh"
23+
value: "github/python-cloud-common/.kokoro/publish-docs.sh"
2424
}
2525

2626
env_vars: {

packages/google-cloud-common/.kokoro/docs/docs-presubmit.cfg

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

1919
env_vars: {
2020
key: "TRAMPOLINE_BUILD_FILE"
21-
value: "github/python-common/.kokoro/build.sh"
21+
value: "github/python-cloud-common/.kokoro/build.sh"
2222
}
2323

2424
# Only run this nox session.

packages/google-cloud-common/.kokoro/presubmit/common.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ gfile_resources: "/bigstore/cloud-devrel-kokoro-resources/trampoline"
1414
gfile_resources: "/bigstore/cloud-devrel-kokoro-resources/google-cloud-python"
1515

1616
# Use the trampoline script to run in docker.
17-
build_file: "python-common/.kokoro/trampoline.sh"
17+
build_file: "python-cloud-common/.kokoro/trampoline.sh"
1818

1919
# Configure the docker image for kokoro-trampoline.
2020
env_vars: {
@@ -23,5 +23,5 @@ env_vars: {
2323
}
2424
env_vars: {
2525
key: "TRAMPOLINE_BUILD_FILE"
26-
value: "github/python-common/.kokoro/build.sh"
26+
value: "github/python-cloud-common/.kokoro/build.sh"
2727
}

packages/google-cloud-common/.kokoro/release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ export PYTHONUNBUFFERED=1
2727

2828
# Move into the package, build the distribution and upload.
2929
TWINE_PASSWORD=$(cat "${KOKORO_GFILE_DIR}/secret_manager/google-cloud-pypi-token")
30-
cd github/python-common
30+
cd github/python-cloud-common
3131
python3 setup.py sdist bdist_wheel
3232
twine upload --username __token__ --password "${TWINE_PASSWORD}" dist/*

packages/google-cloud-common/.kokoro/release/common.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ action {
1111
gfile_resources: "/bigstore/cloud-devrel-kokoro-resources/trampoline"
1212

1313
# Use the trampoline script to run in docker.
14-
build_file: "python-common/.kokoro/trampoline.sh"
14+
build_file: "python-cloud-common/.kokoro/trampoline.sh"
1515

1616
# Configure the docker image for kokoro-trampoline.
1717
env_vars: {
@@ -20,7 +20,7 @@ env_vars: {
2020
}
2121
env_vars: {
2222
key: "TRAMPOLINE_BUILD_FILE"
23-
value: "github/python-common/.kokoro/release.sh"
23+
value: "github/python-cloud-common/.kokoro/release.sh"
2424
}
2525

2626
# Tokens needed to report release status back to GitHub

packages/google-cloud-common/.kokoro/samples/lint/common.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ env_vars: {
1515

1616
env_vars: {
1717
key: "TRAMPOLINE_BUILD_FILE"
18-
value: "github/python-common/.kokoro/test-samples.sh"
18+
value: "github/python-cloud-common/.kokoro/test-samples.sh"
1919
}
2020

2121
# Configure the docker image for kokoro-trampoline.
@@ -31,4 +31,4 @@ gfile_resources: "/bigstore/cloud-devrel-kokoro-resources/python-docs-samples"
3131
gfile_resources: "/bigstore/cloud-devrel-kokoro-resources/trampoline"
3232

3333
# Use the trampoline script to run in docker.
34-
build_file: "python-common/.kokoro/trampoline.sh"
34+
build_file: "python-cloud-common/.kokoro/trampoline.sh"

0 commit comments

Comments
 (0)