Skip to content

Commit

Permalink
build: add release-please config, fix owlbot-config
Browse files Browse the repository at this point in the history
  • Loading branch information
sofisl committed Nov 11, 2022
1 parent 6e94464 commit 6c36640
Show file tree
Hide file tree
Showing 10 changed files with 632 additions and 38 deletions.
1 change: 1 addition & 0 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
"packages/google-cloud-texttospeech": "4.0.4",
"packages/google-cloud-translate": "7.0.4",
"packages/google-cloud-videointelligence": "4.1.1",
"packages/google-container": "4.4.0",
"packages/google-devtools-artifactregistry": "2.0.2",
"packages/google-iam": "0.2.2",
"packages/google-maps-addressvalidation": "0.1.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
docker:
image: gcr.io/cloud-devrel-public-resources/owlbot-nodejs:latest

deep-remove-regex:
- /owl-bot-staging
Expand All @@ -21,8 +19,8 @@ deep-preserve-regex:
- /owl-bot-staging/v1beta1

deep-copy-regex:
- source: /google/container/(v.*)/.*-nodejs/(.*)
dest: /owl-bot-staging/$1/$2
- source: /google/container/(v.*)/.*-nodejs
dest: /owl-bot-staging/google-container/$1

begin-after-commit-hash: fb91803ccef5d7c695139b22788b309e2197856b

2 changes: 1 addition & 1 deletion packages/google-container/.mocharc.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2020 Google LLC
// Copyright 2022 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion packages/google-container/.prettierrc.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2020 Google LLC
// Copyright 2022 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion packages/google-container/.repo-metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"language": "nodejs",
"repo": "googleapis/nodejs-cloud-container",
"repo": "googleapis/google-cloud-node",
"name": "container",
"issue_tracker": "https://issuetracker.google.com/savedsearches/559746",
"default_version": "v1",
Expand Down
49 changes: 40 additions & 9 deletions packages/google-container/README.md

Large diffs are not rendered by default.

13 changes: 9 additions & 4 deletions packages/google-container/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@
"engines": {
"node": ">=12.0.0"
},
"repository": "googleapis/nodejs-cloud-container",
"repository": {
"type": "git",
"directory": "packages/google-container",
"url": "https://github.com/googleapis/google-cloud-node.git"
},
"main": "build/src/index.js",
"files": [
"build/protos",
Expand All @@ -28,8 +32,8 @@
],
"scripts": {
"test": "c8 mocha build/test",
"samples-test": "cd samples/ && npm link ../ && npm install && npm test && cd ../",
"system-test": "mocha build/system-test",
"samples-test": "npm run compile && cd samples/ && npm link ../ && npm i && npm test",
"system-test": "npm run compile && c8 mocha build/system-test",
"lint": "gts check",
"fix": "gts fix",
"docs": "jsdoc -c .jsdoc.js",
Expand Down Expand Up @@ -63,5 +67,6 @@
"typescript": "^4.6.4",
"webpack": "^5.0.0",
"webpack-cli": "^4.0.0"
}
},
"homepage": "https://github.com/googleapis/google-cloud-node/tree/main/packages/google-container"
}
Loading

0 comments on commit 6c36640

Please sign in to comment.