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 3aa789f commit 82496df
Show file tree
Hide file tree
Showing 10 changed files with 3,451 additions and 159 deletions.
1 change: 1 addition & 0 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"packages/google-cloud-dataplex": "2.2.2",
"packages/google-cloud-dataproc": "4.1.1",
"packages/google-cloud-deploy": "2.2.2",
"packages/google-cloud-dialogflow-cx": "3.1.2",
"packages/google-cloud-discoveryengine": "0.2.0",
"packages/google-cloud-gkeconnect-gateway": "2.0.5",
"packages/google-cloud-gkemulticloud": "0.1.4",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,11 @@
# 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/dialogflow/cx/(.*)/.*-nodejs/(.*)
dest: /owl-bot-staging/$1/$2
- source: /google/cloud/dialogflow/cx/(.*)/.*-nodejs
dest: /owl-bot-staging/google-cloud-dialogflow-cx/$1

2 changes: 1 addition & 1 deletion packages/google-cloud-dialogflow-cx/.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-dialogflow-cx/.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-cloud-dialogflow-cx/.repo-metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"distribution_name": "@google-cloud/dialogflow-cx",
"name_pretty": "Dialogflow CX API",
"api_id": "dialogflow.googleapis.com",
"repo": "googleapis/nodejs-dialogflow-cx",
"repo": "googleapis/google-cloud-node",
"api_shortname": "dialogflow",
"library_type": "GAPIC_AUTO"
}
231 changes: 202 additions & 29 deletions packages/google-cloud-dialogflow-cx/README.md

Large diffs are not rendered by default.

13 changes: 9 additions & 4 deletions packages/google-cloud-dialogflow-cx/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
"name": "@google-cloud/dialogflow-cx",
"version": "3.1.2",
"description": "Cx client for Node.js",
"repository": "googleapis/nodejs-dialogflow-cx",
"repository": {
"type": "git",
"directory": "packages/google-cloud-dialogflow-cx",
"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 @@ -45,9 +49,9 @@
"lint": "gts check",
"prelint": "cd samples; npm link ../; npm i",
"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 node build/test/run.js",
"samples-test": "cd samples/ && npm link ../ && npm test"
"samples-test": "npm run compile && cd samples/ && npm link ../ && npm i && npm test"
},
"dependencies": {
"google-gax": "^3.5.2"
Expand All @@ -73,5 +77,6 @@
},
"engines": {
"node": ">=12.0.0"
}
},
"homepage": "https://github.com/googleapis/google-cloud-node/tree/main/packages/google-cloud-dialogflow-cx"
}
3,348 changes: 3,231 additions & 117 deletions packages/google-cloud-dialogflow-cx/samples/README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/google-cloud-dialogflow-cx/src/index.ts
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
3 changes: 2 additions & 1 deletion release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"packages/google-cloud-dataplex": {},
"packages/google-cloud-dataproc": {},
"packages/google-cloud-deploy": {},
"packages/google-cloud-dialogflow-cx": {},
"packages/google-cloud-discoveryengine": {},
"packages/google-cloud-gkeconnect-gateway": {},
"packages/google-cloud-gkemulticloud": {},
Expand Down Expand Up @@ -49,4 +50,4 @@
}
],
"release-type": "node"
}
}

0 comments on commit 82496df

Please sign in to comment.