Skip to content

Commit 21efac5

Browse files
authored
chore: update all the things for main (#5099)
1 parent 5a2ed6b commit 21efac5

File tree

114 files changed

+219
-219
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

114 files changed

+219
-219
lines changed

.github/sync-repo-settings.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ rebaseMergeAllowed: true
22
squashMergeAllowed: true
33
mergeCommitAllowed: false
44
branchProtectionRules:
5-
- pattern: master
5+
- pattern: main
66
isAdminEnforced: true
77
requiredStatusCheckContexts:
88
- 'kokoro'

.github/workflows/release-submodule.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
on:
44
push:
55
branches:
6-
- master
6+
- main
77
name: release-please-submodule
88
jobs:
99
# This logic looks at commits that have occurred since GitHub's magic

.github/workflows/release.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
on:
44
push:
55
branches:
6-
- master
6+
- main
77
name: release-please
88
jobs:
99
release-please-pr:

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,12 @@ client, err := storage.NewClient(ctx, option.WithTokenSource(tokenSource))
7070
## Contributing
7171

7272
Contributions are welcome. Please, see the
73-
[CONTRIBUTING](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/master/CONTRIBUTING.md)
73+
[CONTRIBUTING](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/main/CONTRIBUTING.md)
7474
document for details.
7575

7676
Please note that this project is released with a Contributor Code of Conduct.
7777
By participating in this project you agree to abide by its terms.
78-
See [Contributor Code of Conduct](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/master/CONTRIBUTING.md#contributor-code-of-conduct)
78+
See [Contributor Code of Conduct](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/main/CONTRIBUTING.md#contributor-code-of-conduct)
7979
for more information.
8080

8181
[cloud-asset]: https://cloud.google.com/security-command-center/docs/how-to-asset-inventory

RELEASING.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -79,14 +79,14 @@ here is how to manually cut a release of `cloud.google.com/go`.
7979
[continuous Kokoro build](http://go/google-cloud-go-continuous). If there are
8080
any failures in the most recent build, address them before proceeding with
8181
the release.
82-
1. Navigate to `google-cloud-go/` and switch to master.
82+
1. Navigate to `google-cloud-go/` and switch to main.
8383
1. `git pull`
8484
1. Run `git tag -l | grep -v beta | grep -v alpha` to see all existing releases.
8585
The current latest tag `$CV` is the largest tag. It should look something
8686
like `vX.Y.Z` (note: ignore all `LIB/vX.Y.Z` tags - these are tags for a
8787
specific library, not the module root). We'll call the current version `$CV`
8888
and the new version `$NV`.
89-
1. On master, run `git log $CV...` to list all the changes since the last
89+
1. On main, run `git log $CV...` to list all the changes since the last
9090
release. NOTE: You must manually visually parse out changes to submodules [1]
9191
(the `git log` is going to show you things in submodules, which are not going
9292
to be part of your release).
@@ -98,7 +98,7 @@ here is how to manually cut a release of `cloud.google.com/go`.
9898
and create a PR titled `chore: release $NV`.
9999
1. Wait for the PR to be reviewed and merged. Once it's merged, and without
100100
merging any other PRs in the meantime:
101-
a. Switch to master.
101+
a. Switch to main.
102102
b. `git pull`
103103
c. Tag the repo with the next version: `git tag $NV`.
104104
d. Push the tag to origin:
@@ -118,21 +118,21 @@ here is how to manually cut a release of a submodule.
118118
any failures in the most recent build, address them before proceeding with
119119
the release. (This applies even if the failures are in a different submodule
120120
from the one being released.)
121-
1. Navigate to `google-cloud-go/` and switch to master.
121+
1. Navigate to `google-cloud-go/` and switch to main.
122122
1. `git pull`
123123
1. Run `git tag -l | grep datastore | grep -v beta | grep -v alpha` to see all
124124
existing releases. The current latest tag `$CV` is the largest tag. It
125125
should look something like `datastore/vX.Y.Z`. We'll call the current version
126126
`$CV` and the new version `$NV`.
127-
1. On master, run `git log $CV.. -- datastore/` to list all the changes to the
127+
1. On main, run `git log $CV.. -- datastore/` to list all the changes to the
128128
submodule directory since the last release.
129129
1. Edit `datastore/CHANGES.md` to include a summary of the changes.
130130
1. In `internal/version` run `go generate`.
131131
1. Commit the changes, ignoring the generated `.go-r` file. Push to your fork,
132132
and create a PR titled `chore(datastore): release $NV`.
133133
1. Wait for the PR to be reviewed and merged. Once it's merged, and without
134134
merging any other PRs in the meantime:
135-
a. Switch to master.
135+
a. Switch to main.
136136
b. `git pull`
137137
c. Tag the repo with the next version: `git tag $NV`.
138138
d. Push the tag to origin:

accessapproval/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ section in the root directory's README.
3131

3232
## Contributing
3333

34-
Contributions are welcome. Please, see the [CONTRIBUTING](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/master/CONTRIBUTING.md)
34+
Contributions are welcome. Please, see the [CONTRIBUTING](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/main/CONTRIBUTING.md)
3535
document for details.
3636

3737
Please note that this project is released with a Contributor Code of Conduct.
3838
By participating in this project you agree to abide by its terms. See
39-
[Contributor Code of Conduct](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/master/CONTRIBUTING.md#contributor-code-of-conduct)
39+
[Contributor Code of Conduct](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/main/CONTRIBUTING.md#contributor-code-of-conduct)
4040
for more information.

accesscontextmanager/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ section in the root directory's README.
3131

3232
## Contributing
3333

34-
Contributions are welcome. Please, see the [CONTRIBUTING](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/master/CONTRIBUTING.md)
34+
Contributions are welcome. Please, see the [CONTRIBUTING](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/main/CONTRIBUTING.md)
3535
document for details.
3636

3737
Please note that this project is released with a Contributor Code of Conduct.
3838
By participating in this project you agree to abide by its terms. See
39-
[Contributor Code of Conduct](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/master/CONTRIBUTING.md#contributor-code-of-conduct)
39+
[Contributor Code of Conduct](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/main/CONTRIBUTING.md#contributor-code-of-conduct)
4040
for more information.

aiplatform/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ section in the root directory's README.
3131

3232
## Contributing
3333

34-
Contributions are welcome. Please, see the [CONTRIBUTING](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/master/CONTRIBUTING.md)
34+
Contributions are welcome. Please, see the [CONTRIBUTING](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/main/CONTRIBUTING.md)
3535
document for details.
3636

3737
Please note that this project is released with a Contributor Code of Conduct.
3838
By participating in this project you agree to abide by its terms. See
39-
[Contributor Code of Conduct](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/master/CONTRIBUTING.md#contributor-code-of-conduct)
39+
[Contributor Code of Conduct](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/main/CONTRIBUTING.md#contributor-code-of-conduct)
4040
for more information.

analytics/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ section in the root directory's README.
3131

3232
## Contributing
3333

34-
Contributions are welcome. Please, see the [CONTRIBUTING](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/master/CONTRIBUTING.md)
34+
Contributions are welcome. Please, see the [CONTRIBUTING](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/main/CONTRIBUTING.md)
3535
document for details.
3636

3737
Please note that this project is released with a Contributor Code of Conduct.
3838
By participating in this project you agree to abide by its terms. See
39-
[Contributor Code of Conduct](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/master/CONTRIBUTING.md#contributor-code-of-conduct)
39+
[Contributor Code of Conduct](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/main/CONTRIBUTING.md#contributor-code-of-conduct)
4040
for more information.

apigateway/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ section in the root directory's README.
3131

3232
## Contributing
3333

34-
Contributions are welcome. Please, see the [CONTRIBUTING](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/master/CONTRIBUTING.md)
34+
Contributions are welcome. Please, see the [CONTRIBUTING](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/main/CONTRIBUTING.md)
3535
document for details.
3636

3737
Please note that this project is released with a Contributor Code of Conduct.
3838
By participating in this project you agree to abide by its terms. See
39-
[Contributor Code of Conduct](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/master/CONTRIBUTING.md#contributor-code-of-conduct)
39+
[Contributor Code of Conduct](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/main/CONTRIBUTING.md#contributor-code-of-conduct)
4040
for more information.

apigeeconnect/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ section in the root directory's README.
3131

3232
## Contributing
3333

34-
Contributions are welcome. Please, see the [CONTRIBUTING](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/master/CONTRIBUTING.md)
34+
Contributions are welcome. Please, see the [CONTRIBUTING](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/main/CONTRIBUTING.md)
3535
document for details.
3636

3737
Please note that this project is released with a Contributor Code of Conduct.
3838
By participating in this project you agree to abide by its terms. See
39-
[Contributor Code of Conduct](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/master/CONTRIBUTING.md#contributor-code-of-conduct)
39+
[Contributor Code of Conduct](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/main/CONTRIBUTING.md#contributor-code-of-conduct)
4040
for more information.

appengine/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ section in the root directory's README.
3131

3232
## Contributing
3333

34-
Contributions are welcome. Please, see the [CONTRIBUTING](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/master/CONTRIBUTING.md)
34+
Contributions are welcome. Please, see the [CONTRIBUTING](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/main/CONTRIBUTING.md)
3535
document for details.
3636

3737
Please note that this project is released with a Contributor Code of Conduct.
3838
By participating in this project you agree to abide by its terms. See
39-
[Contributor Code of Conduct](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/master/CONTRIBUTING.md#contributor-code-of-conduct)
39+
[Contributor Code of Conduct](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/main/CONTRIBUTING.md#contributor-code-of-conduct)
4040
for more information.

area120/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ section in the root directory's README.
3131

3232
## Contributing
3333

34-
Contributions are welcome. Please, see the [CONTRIBUTING](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/master/CONTRIBUTING.md)
34+
Contributions are welcome. Please, see the [CONTRIBUTING](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/main/CONTRIBUTING.md)
3535
document for details.
3636

3737
Please note that this project is released with a Contributor Code of Conduct.
3838
By participating in this project you agree to abide by its terms. See
39-
[Contributor Code of Conduct](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/master/CONTRIBUTING.md#contributor-code-of-conduct)
39+
[Contributor Code of Conduct](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/main/CONTRIBUTING.md#contributor-code-of-conduct)
4040
for more information.

artifactregistry/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ section in the root directory's README.
3131

3232
## Contributing
3333

34-
Contributions are welcome. Please, see the [CONTRIBUTING](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/master/CONTRIBUTING.md)
34+
Contributions are welcome. Please, see the [CONTRIBUTING](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/main/CONTRIBUTING.md)
3535
document for details.
3636

3737
Please note that this project is released with a Contributor Code of Conduct.
3838
By participating in this project you agree to abide by its terms. See
39-
[Contributor Code of Conduct](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/master/CONTRIBUTING.md#contributor-code-of-conduct)
39+
[Contributor Code of Conduct](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/main/CONTRIBUTING.md#contributor-code-of-conduct)
4040
for more information.

asset/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ section in the root directory's README.
3131

3232
## Contributing
3333

34-
Contributions are welcome. Please, see the [CONTRIBUTING](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/master/CONTRIBUTING.md)
34+
Contributions are welcome. Please, see the [CONTRIBUTING](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/main/CONTRIBUTING.md)
3535
document for details.
3636

3737
Please note that this project is released with a Contributor Code of Conduct.
3838
By participating in this project you agree to abide by its terms. See
39-
[Contributor Code of Conduct](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/master/CONTRIBUTING.md#contributor-code-of-conduct)
39+
[Contributor Code of Conduct](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/main/CONTRIBUTING.md#contributor-code-of-conduct)
4040
for more information.

assuredworkloads/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ section in the root directory's README.
3131

3232
## Contributing
3333

34-
Contributions are welcome. Please, see the [CONTRIBUTING](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/master/CONTRIBUTING.md)
34+
Contributions are welcome. Please, see the [CONTRIBUTING](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/main/CONTRIBUTING.md)
3535
document for details.
3636

3737
Please note that this project is released with a Contributor Code of Conduct.
3838
By participating in this project you agree to abide by its terms. See
39-
[Contributor Code of Conduct](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/master/CONTRIBUTING.md#contributor-code-of-conduct)
39+
[Contributor Code of Conduct](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/main/CONTRIBUTING.md#contributor-code-of-conduct)
4040
for more information.

automl/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ section in the root directory's README.
3131

3232
## Contributing
3333

34-
Contributions are welcome. Please, see the [CONTRIBUTING](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/master/CONTRIBUTING.md)
34+
Contributions are welcome. Please, see the [CONTRIBUTING](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/main/CONTRIBUTING.md)
3535
document for details.
3636

3737
Please note that this project is released with a Contributor Code of Conduct.
3838
By participating in this project you agree to abide by its terms. See
39-
[Contributor Code of Conduct](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/master/CONTRIBUTING.md#contributor-code-of-conduct)
39+
[Contributor Code of Conduct](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/main/CONTRIBUTING.md#contributor-code-of-conduct)
4040
for more information.

bigquery/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
- [About BigQuery](https://cloud.google.com/bigquery/)
44
- [API documentation](https://cloud.google.com/bigquery/docs)
55
- [Go client documentation](https://pkg.go.dev/cloud.google.com/go/bigquery)
6-
- [Complete sample programs](https://github.com/GoogleCloudPlatform/golang-samples/tree/master/bigquery)
6+
- [Complete sample programs](https://github.com/GoogleCloudPlatform/golang-samples/tree/main/bigquery)
77

88
### Example Usage
99

billing/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ section in the root directory's README.
3131

3232
## Contributing
3333

34-
Contributions are welcome. Please, see the [CONTRIBUTING](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/master/CONTRIBUTING.md)
34+
Contributions are welcome. Please, see the [CONTRIBUTING](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/main/CONTRIBUTING.md)
3535
document for details.
3636

3737
Please note that this project is released with a Contributor Code of Conduct.
3838
By participating in this project you agree to abide by its terms. See
39-
[Contributor Code of Conduct](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/master/CONTRIBUTING.md#contributor-code-of-conduct)
39+
[Contributor Code of Conduct](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/main/CONTRIBUTING.md#contributor-code-of-conduct)
4040
for more information.

binaryauthorization/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ section in the root directory's README.
3131

3232
## Contributing
3333

34-
Contributions are welcome. Please, see the [CONTRIBUTING](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/master/CONTRIBUTING.md)
34+
Contributions are welcome. Please, see the [CONTRIBUTING](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/main/CONTRIBUTING.md)
3535
document for details.
3636

3737
Please note that this project is released with a Contributor Code of Conduct.
3838
By participating in this project you agree to abide by its terms. See
39-
[Contributor Code of Conduct](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/master/CONTRIBUTING.md#contributor-code-of-conduct)
39+
[Contributor Code of Conduct](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/main/CONTRIBUTING.md#contributor-code-of-conduct)
4040
for more information.

channel/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ section in the root directory's README.
3131

3232
## Contributing
3333

34-
Contributions are welcome. Please, see the [CONTRIBUTING](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/master/CONTRIBUTING.md)
34+
Contributions are welcome. Please, see the [CONTRIBUTING](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/main/CONTRIBUTING.md)
3535
document for details.
3636

3737
Please note that this project is released with a Contributor Code of Conduct.
3838
By participating in this project you agree to abide by its terms. See
39-
[Contributor Code of Conduct](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/master/CONTRIBUTING.md#contributor-code-of-conduct)
39+
[Contributor Code of Conduct](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/main/CONTRIBUTING.md#contributor-code-of-conduct)
4040
for more information.

cloudbuild/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ section in the root directory's README.
3131

3232
## Contributing
3333

34-
Contributions are welcome. Please, see the [CONTRIBUTING](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/master/CONTRIBUTING.md)
34+
Contributions are welcome. Please, see the [CONTRIBUTING](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/main/CONTRIBUTING.md)
3535
document for details.
3636

3737
Please note that this project is released with a Contributor Code of Conduct.
3838
By participating in this project you agree to abide by its terms. See
39-
[Contributor Code of Conduct](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/master/CONTRIBUTING.md#contributor-code-of-conduct)
39+
[Contributor Code of Conduct](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/main/CONTRIBUTING.md#contributor-code-of-conduct)
4040
for more information.

clouddms/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ section in the root directory's README.
3131

3232
## Contributing
3333

34-
Contributions are welcome. Please, see the [CONTRIBUTING](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/master/CONTRIBUTING.md)
34+
Contributions are welcome. Please, see the [CONTRIBUTING](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/main/CONTRIBUTING.md)
3535
document for details.
3636

3737
Please note that this project is released with a Contributor Code of Conduct.
3838
By participating in this project you agree to abide by its terms. See
39-
[Contributor Code of Conduct](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/master/CONTRIBUTING.md#contributor-code-of-conduct)
39+
[Contributor Code of Conduct](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/main/CONTRIBUTING.md#contributor-code-of-conduct)
4040
for more information.

cloudtasks/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ section in the root directory's README.
3131

3232
## Contributing
3333

34-
Contributions are welcome. Please, see the [CONTRIBUTING](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/master/CONTRIBUTING.md)
34+
Contributions are welcome. Please, see the [CONTRIBUTING](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/main/CONTRIBUTING.md)
3535
document for details.
3636

3737
Please note that this project is released with a Contributor Code of Conduct.
3838
By participating in this project you agree to abide by its terms. See
39-
[Contributor Code of Conduct](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/master/CONTRIBUTING.md#contributor-code-of-conduct)
39+
[Contributor Code of Conduct](https://github.com/GoogleCloudPlatform/google-cloud-go/blob/main/CONTRIBUTING.md#contributor-code-of-conduct)
4040
for more information.

0 commit comments

Comments
 (0)