This repository was archived by the owner on Dec 3, 2023. It is now read-only.
File tree 4 files changed +15
-6
lines changed
4 files changed +15
-6
lines changed Original file line number Diff line number Diff line change @@ -28,9 +28,18 @@ echo "https://${GITHUB_TOKEN}:@github.com" >> ~/.git-credentials
28
28
git config --global credential.helper ' store --file ~/.git-credentials'
29
29
30
30
python3.6 -m pip install git+https://github.com/googleapis/synthtool.git#egg=gcp-synthtool
31
+
32
+ set +e
31
33
python3.6 -m autosynth.synth \
32
34
--repository=googleapis/java-core \
33
35
--synth-file-name=.github/readme/synth.py \
34
36
--metadata-path=.github/readme/synth.metadata \
35
37
--pr-title=" chore: regenerate README" \
36
- --branch-suffix=" readme"
38
+ --branch-suffix=" readme"
39
+
40
+ # autosynth returns 28 to signal there are no changes
41
+ RETURN_CODE=$?
42
+ if [[ ${RETURN_CODE} -ne 0 && ${RETURN_CODE} -ne 28 ]]
43
+ then
44
+ exit ${RETURN_CODE}
45
+ fi
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ env_vars: {
9
9
10
10
env_vars: {
11
11
key: " STAGING_BUCKET_V2"
12
- value: " docs-staging-v2-staging "
12
+ value: " docs-staging-v2"
13
13
# Production will be at: docs-staging-v2
14
14
}
15
15
Original file line number Diff line number Diff line change 154
154
<gax .version>1.60.0</gax .version>
155
155
<google .api-common.version>1.10.1</google .api-common.version>
156
156
<google .common-protos.version>2.0.1</google .common-protos.version>
157
- <google .iam.version>1.0.2 </google .iam.version>
157
+ <google .iam.version>1.0.3 </google .iam.version>
158
158
<google .auth.version>0.22.0</google .auth.version>
159
159
<google .api.version>1.30.11</google .api.version>
160
- <google .http.version>1.37 .0</google .http.version>
160
+ <google .http.version>1.38 .0</google .http.version>
161
161
<grpc .version>1.33.0</grpc .version>
162
162
<protobuf .version>3.13.0</protobuf .version>
163
163
<opencensus .version>0.24.0</opencensus .version>
Original file line number Diff line number Diff line change 4
4
"git": {
5
5
"name": ".",
6
6
"remote": "https://github.com/googleapis/java-core.git",
7
- "sha": "54924f51efee095dee7f94267a1a436facc4761e "
7
+ "sha": "4ff835d66de0f7d6d6cc4ab912ea707911731c60 "
8
8
}
9
9
},
10
10
{
11
11
"git": {
12
12
"name": "synthtool",
13
13
"remote": "https://github.com/googleapis/synthtool.git",
14
- "sha": "b19b401571e77192f8dd38eab5fb2300a0de9324 "
14
+ "sha": "7db8a6c5ffb12a6e4c2f799c18f00f7f3d60e279 "
15
15
}
16
16
}
17
17
],
You can’t perform that action at this time.
0 commit comments