Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commita4427bc

Browse files
feat: increase IT timeout from 20 to 60 mins (#440)
* feat: increase IT timeout from 20 to 60 mins* chore: fix repo-metadata* 🦉 Updates from OwlBot post-processorSeehttps://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md* chore: update owlbot* 🦉 Updates from OwlBot post-processorSeehttps://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.mdCo-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent3610d60 commita4427bc

File tree

9 files changed

+104
-17
lines changed

9 files changed

+104
-17
lines changed

‎.github/.OwlBot.lock.yaml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# limitations under the License.
1414
docker:
1515
image:gcr.io/cloud-devrel-public-resources/owlbot-java:latest
16-
digest:sha256:ebc2104854c5b81c6fd72ca79400a2e20e0d510c5e0654fd1a19e5c9be160ca6
16+
digest:sha256:b0b1c1c89570e229b1026372a2b8989ba31495007055b8d30178b7648503eefa

‎.github/ISSUE_TEMPLATE/bug_report.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ If you are still having issues, please include as much information as possible:
2121
General, Core, and Other are also allowed as types
2222
2. OS type and version:
2323
3. Java version:
24-
4.google-cloud-shared-config version(s):
24+
4. version(s):
2525

2626
####Steps to reproduce
2727

‎.github/PULL_REQUEST_TEMPLATE.md‎

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,6 @@ Thank you for opening a Pull Request! Before submitting your PR, there are a few
55
-[ ] Appropriate docs were updated (if necessary)
66

77
Fixes #<issue_number_goes_here> ☕️
8+
9+
If you write sample code, please follow the[samples format](
10+
https://github.com/GoogleCloudPlatform/java-docs-samples/blob/main/SAMPLE_FORMAT.md).

‎.github/workflows/approve-readme.yaml‎

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
# Copyright 2022 Google LLC
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
# Github action job to test core java library features on
15+
# downstream client libraries before they are released.
116
on:
217
pull_request:
318
name:auto-merge-readme
@@ -6,7 +21,7 @@ jobs:
621
runs-on:ubuntu-latest
722
if:github.repository_owner == 'googleapis' && github.head_ref == 'autosynth-readme'
823
steps:
9-
-uses:actions/github-script@v3
24+
-uses:actions/github-script@v6
1025
with:
1126
github-token:${{secrets.YOSHI_APPROVER_TOKEN}}
1227
script:|

‎.github/workflows/ci.yaml‎

Lines changed: 25 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
# Copyright 2022 Google LLC
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
# Github action job to test core java library features on
15+
# downstream client libraries before they are released.
116
on:
217
push:
318
branches:
@@ -12,8 +27,8 @@ jobs:
1227
matrix:
1328
java:[8, 11, 17]
1429
steps:
15-
-uses:actions/checkout@v2
16-
-uses:actions/setup-java@v2
30+
-uses:actions/checkout@v3
31+
-uses:actions/setup-java@v3
1732
with:
1833
distribution:zulu
1934
java-version:${{matrix.java}}
@@ -24,8 +39,8 @@ jobs:
2439
windows:
2540
runs-on:windows-latest
2641
steps:
27-
-uses:actions/checkout@v2
28-
-uses:actions/setup-java@v2
42+
-uses:actions/checkout@v3
43+
-uses:actions/setup-java@v3
2944
with:
3045
distribution:zulu
3146
java-version:8
@@ -39,8 +54,8 @@ jobs:
3954
matrix:
4055
java:[8, 11, 17]
4156
steps:
42-
-uses:actions/checkout@v2
43-
-uses:actions/setup-java@v2
57+
-uses:actions/checkout@v3
58+
-uses:actions/setup-java@v3
4459
with:
4560
distribution:zulu
4661
java-version:${{matrix.java}}
@@ -49,8 +64,8 @@ jobs:
4964
lint:
5065
runs-on:ubuntu-latest
5166
steps:
52-
-uses:actions/checkout@v2
53-
-uses:actions/setup-java@v2
67+
-uses:actions/checkout@v3
68+
-uses:actions/setup-java@v3
5469
with:
5570
distribution:zulu
5671
java-version:11
@@ -61,8 +76,8 @@ jobs:
6176
clirr:
6277
runs-on:ubuntu-latest
6378
steps:
64-
-uses:actions/checkout@v2
65-
-uses:actions/setup-java@v2
79+
-uses:actions/checkout@v3
80+
-uses:actions/setup-java@v3
6681
with:
6782
distribution:zulu
6883
java-version:8

‎.kokoro/build.bat‎

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
:: Copyright 2022 Google LLC
2+
::
3+
:: Licensed under the Apache License, Version 2.0 (the "License");
4+
:: you may not use this file except in compliance with the License.
5+
:: You may obtain a copy of the License at
6+
::
7+
:: http://www.apache.org/licenses/LICENSE-2.0
8+
::
9+
:: Unless required by applicable law or agreed to in writing, software
10+
:: distributed under the License is distributed on an "AS IS" BASIS,
11+
:: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
:: See the License for the specific language governing permissions and
13+
:: limitations under the License.
14+
:: Github action job to test core java library features on
15+
:: downstream client libraries before they are released.
116
:: See documentation in type-shell-output.bat
217

318
"C:\Program Files\Git\bin\bash.exe"%~dp0build.sh

‎.kokoro/nightly/integration.cfg‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ env_vars: {
1313
# TODO: remove this after we've migrated all tests and scripts
1414
env_vars: {
1515
key:"GCLOUD_PROJECT"
16-
value:"gcloud-devel"
16+
value:"java-docs-samples-testing"
1717
}
1818

1919
env_vars: {
2020
key:"GOOGLE_CLOUD_PROJECT"
21-
value:"gcloud-devel"
21+
value:"java-docs-samples-testing"
2222
}
2323

2424
env_vars: {
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# Format: //devtools/kokoro/config/proto/build.proto
2+
3+
# Configure the docker image for kokoro-trampoline.
4+
env_vars: {
5+
key:"TRAMPOLINE_IMAGE"
6+
value:"gcr.io/cloud-devrel-public-resources/java11014"
7+
}
8+
9+
env_vars: {
10+
key:"JOB_TYPE"
11+
value:"integration"
12+
}
13+
# TODO: remove this after we've migrated all tests and scripts
14+
env_vars: {
15+
key:"GCLOUD_PROJECT"
16+
value:"gcloud-devel"
17+
}
18+
19+
env_vars: {
20+
key:"GOOGLE_CLOUD_PROJECT"
21+
value:"gcloud-devel"
22+
}
23+
24+
env_vars: {
25+
key:"ENABLE_FLAKYBOT"
26+
value:"true"
27+
}
28+
29+
env_vars: {
30+
key:"GOOGLE_APPLICATION_CREDENTIALS"
31+
value:"secret_manager/java-it-service-account"
32+
}
33+
34+
env_vars: {
35+
key:"SECRET_MANAGER_KEYS"
36+
value:"java-it-service-account"
37+
}

‎.repo-metadata.json‎

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
{
2-
"name":"google-cloud-shared-config",
2+
"api_shortname":"google-cloud-shared-config",
33
"name_pretty":"Google Cloud Shared Build Configs",
44
"release_level":"beta",
5+
"client_documentation":"n/a",
56
"language":"java",
67
"repo":"googleapis/java-shared-config",
78
"repo_short":"java-shared-config",
8-
"distribution_name":"com.google.cloud:google-cloud-shared-config"
9+
"distribution_name":"com.google.cloud:google-cloud-shared-config",
10+
"library_type":"OTHER"
911
}

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp