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 Dec 21, 2022
1 parent b02661b commit 7e53db6
Show file tree
Hide file tree
Showing 10 changed files with 189 additions and 147 deletions.
5 changes: 3 additions & 2 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,11 @@
"packages/google-cloud-tpu": "2.3.0",
"packages/google-cloud-translate": "7.0.5",
"packages/google-cloud-video-livestream": "0.3.4",
"packages/google-cloud-video-stitcher": "0.3.0",
"packages/google-cloud-video-transcoder": "2.3.0",
"packages/google-cloud-videointelligence": "4.1.1",
"packages/google-cloud-vmmigration": "2.2.1",
"packages/google-cloud-vmwareengine": "0.1.0",
"packages/google-cloud-vpcaccess": "2.1.3",
"packages/google-cloud-webrisk": "3.2.0",
"packages/google-cloud-websecurityscanner": "2.1.3",
Expand All @@ -120,6 +122,5 @@
"packages/google-monitoring-dashboard": "2.8.0",
"packages/google-storagetransfer": "2.2.1",
"packages/grafeas": "4.2.1",
"packages/typeless-sample-bot": "1.2.0",
"packages/google-cloud-vmwareengine": "0.1.0"
"packages/typeless-sample-bot": "1.2.0"
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,10 @@
# 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

deep-copy-regex:
- source: /google/cloud/video/stitcher/(.*)/.*-nodejs/(.*)
dest: /owl-bot-staging/$1/$2
- source: /google/cloud/video/stitcher/(.*)/.*-nodejs
dest: /owl-bot-staging/google-cloud-video-stitcher/$1
2 changes: 1 addition & 1 deletion packages/google-cloud-video-stitcher/.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-cloud-video-stitcher/.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
5 changes: 2 additions & 3 deletions packages/google-cloud-video-stitcher/.repo-metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,13 @@
"name_pretty": "Video Stitcher API",
"product_documentation": "https://cloud.google.com/video-stitcher/",
"client_documentation": "https://googleapis.dev/nodejs/videostitcher/latest/",
"issue_tracker": "https://github.com/googleapis/nodejs-video-stitcher/issues",
"issue_tracker": "https://github.com/googleapis/google-cloud-node/issues",
"release_level": "beta",
"language": "nodejs",
"repo": "googleapis/nodejs-video-stitcher",
"repo": "googleapis/google-cloud-node",
"codeowner_team": "@googleapis/cloud-media-team",
"distribution_name": "@google-cloud/video-stitcher",
"api_id": "stitcher.googleapis.com",
"default_version": "v1",
"requires_billing": true
}

54 changes: 28 additions & 26 deletions packages/google-cloud-video-stitcher/README.md

Large diffs are not rendered by default.

13 changes: 9 additions & 4 deletions packages/google-cloud-video-stitcher/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
"name": "@google-cloud/video-stitcher",
"version": "0.3.0",
"description": "stitcher client for Node.js",
"repository": "googleapis/nodejs-video-stitcher",
"repository": {
"type": "git",
"directory": "packages/google-cloud-video-stitcher",
"url": "https://github.com/googleapis/google-cloud-node.git"
},
"license": "Apache-2.0",
"author": "Google LLC",
"main": "build/src/index.js",
Expand Down Expand Up @@ -33,9 +37,9 @@
"fix": "gts fix",
"lint": "gts check",
"prepare": "npm run compile-protos && npm run compile",
"system-test": "c8 mocha build/system-test",
"system-test": "npm run compile && c8 mocha build/system-test",
"test": "c8 mocha build/test",
"samples-test": "cd samples/ && npm link ../ && npm test",
"samples-test": "npm run compile && cd samples/ && npm link ../ && npm i && npm test",
"prelint": "cd samples; npm link ../; npm i"
},
"dependencies": {
Expand All @@ -62,5 +66,6 @@
},
"engines": {
"node": ">=v12.0.0"
}
},
"homepage": "https://github.com/googleapis/google-cloud-node/tree/main/packages/google-cloud-video-stitcher"
}
Loading

0 comments on commit 7e53db6

Please sign in to comment.