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 Jan 10, 2023
1 parent f8be54c commit 5ac61ca
Show file tree
Hide file tree
Showing 10 changed files with 334 additions and 233 deletions.
1 change: 1 addition & 0 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@
"packages/google-maps-addressvalidation": "1.0.0",
"packages/google-maps-routing": "0.2.1",
"packages/google-monitoring-dashboard": "2.8.0",
"packages/google-privacy-dlp": "4.3.0",
"packages/google-storagetransfer": "2.2.1",
"packages/grafeas": "4.2.1",
"packages/typeless-sample-bot": "1.2.0"
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/privacy/dlp/(.*)/.*-nodejs/(.*)
dest: /owl-bot-staging/$1/$2
- source: /google/privacy/dlp/(.*)/.*-nodejs
dest: /owl-bot-staging/google-privacy-dlp/$1

2 changes: 1 addition & 1 deletion packages/google-privacy-dlp/.mocharc.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2020 Google LLC
// Copyright 2023 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-privacy-dlp/.prettierrc.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2020 Google LLC
// Copyright 2023 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-privacy-dlp/.repo-metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"default_version": "v2",
"language": "nodejs",
"name_pretty": "Cloud Data Loss Prevention",
"repo": "googleapis/nodejs-dlp",
"repo": "googleapis/google-cloud-node",
"product_documentation": "https://cloud.google.com/dlp/docs/",
"requires_billing": true,
"name": "dlp",
Expand Down
78 changes: 42 additions & 36 deletions packages/google-privacy-dlp/README.md

Large diffs are not rendered by default.

13 changes: 9 additions & 4 deletions packages/google-privacy-dlp/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-dlp",
"repository": {
"type": "git",
"directory": "packages/google-privacy-dlp",
"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",
"docs": "jsdoc -c .jsdoc.js",
"lint": "gts check",
"fix": "gts fix",
Expand Down Expand Up @@ -63,5 +67,6 @@
"typescript": "^4.6.4",
"webpack": "^5.0.0",
"webpack-cli": "^5.0.0"
}
},
"homepage": "https://github.com/googleapis/google-cloud-node/tree/main/packages/google-privacy-dlp"
}
460 changes: 275 additions & 185 deletions packages/google-privacy-dlp/samples/README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/google-privacy-dlp/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2020 Google LLC
// Copyright 2023 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
1 change: 1 addition & 0 deletions release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@
"packages/google-maps-addressvalidation": {},
"packages/google-maps-routing": {},
"packages/google-monitoring-dashboard": {},
"packages/google-privacy-dlp": {},
"packages/google-storagetransfer": {},
"packages/grafeas": {},
"packages/typeless-sample-bot": {}
Expand Down

0 comments on commit 5ac61ca

Please sign in to comment.