Skip to content

Commit f1425ba

Browse files
committed
build: add release-please config, fix owlbot-config
1 parent accb33b commit f1425ba

File tree

10 files changed

+334
-233
lines changed

10 files changed

+334
-233
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@
120120
"packages/google-maps-addressvalidation": "1.0.0",
121121
"packages/google-maps-routing": "0.2.1",
122122
"packages/google-monitoring-dashboard": "2.8.0",
123+
"packages/google-privacy-dlp": "4.3.0",
123124
"packages/google-storagetransfer": "2.2.1",
124125
"packages/grafeas": "4.2.1",
125126
"packages/typeless-sample-bot": "1.2.0"

packages/google-privacy-dlp/.github/.OwlBot.yaml renamed to packages/google-privacy-dlp/.OwlBot.yaml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,11 @@
1111
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
14-
docker:
15-
image: gcr.io/cloud-devrel-public-resources/owlbot-nodejs:latest
1614

1715
deep-remove-regex:
1816
- /owl-bot-staging
1917

2018
deep-copy-regex:
21-
- source: /google/privacy/dlp/(.*)/.*-nodejs/(.*)
22-
dest: /owl-bot-staging/$1/$2
19+
- source: /google/privacy/dlp/(.*)/.*-nodejs
20+
dest: /owl-bot-staging/google-privacy-dlp/$1
2321

packages/google-privacy-dlp/.mocharc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2020 Google LLC
1+
// Copyright 2023 Google LLC
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

packages/google-privacy-dlp/.prettierrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2020 Google LLC
1+
// Copyright 2023 Google LLC
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

packages/google-privacy-dlp/.repo-metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"default_version": "v2",
77
"language": "nodejs",
88
"name_pretty": "Cloud Data Loss Prevention",
9-
"repo": "googleapis/nodejs-dlp",
9+
"repo": "googleapis/google-cloud-node",
1010
"product_documentation": "https://cloud.google.com/dlp/docs/",
1111
"requires_billing": true,
1212
"name": "dlp",

packages/google-privacy-dlp/README.md

Lines changed: 42 additions & 36 deletions
Large diffs are not rendered by default.

packages/google-privacy-dlp/package.json

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,11 @@
77
"engines": {
88
"node": ">=12.0.0"
99
},
10-
"repository": "googleapis/nodejs-dlp",
10+
"repository": {
11+
"type": "git",
12+
"directory": "packages/google-privacy-dlp",
13+
"url": "https://github.com/googleapis/google-cloud-node.git"
14+
},
1115
"main": "build/src/index.js",
1216
"files": [
1317
"build/protos",
@@ -28,8 +32,8 @@
2832
],
2933
"scripts": {
3034
"test": "c8 mocha build/test",
31-
"samples-test": "cd samples/ && npm link ../ && npm install && npm test && cd ../",
32-
"system-test": "mocha build/system-test",
35+
"samples-test": "npm run compile && cd samples/ && npm link ../ && npm i && npm test",
36+
"system-test": "npm run compile && c8 mocha build/system-test",
3337
"docs": "jsdoc -c .jsdoc.js",
3438
"lint": "gts check",
3539
"fix": "gts fix",
@@ -63,5 +67,6 @@
6367
"typescript": "^4.6.4",
6468
"webpack": "^5.0.0",
6569
"webpack-cli": "^5.0.0"
66-
}
70+
},
71+
"homepage": "https://github.com/googleapis/google-cloud-node/tree/main/packages/google-privacy-dlp"
6772
}

packages/google-privacy-dlp/samples/README.md

Lines changed: 275 additions & 185 deletions
Large diffs are not rendered by default.

packages/google-privacy-dlp/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2020 Google LLC
1+
// Copyright 2023 Google LLC
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

release-please-config.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@
121121
"packages/google-maps-addressvalidation": {},
122122
"packages/google-maps-routing": {},
123123
"packages/google-monitoring-dashboard": {},
124+
"packages/google-privacy-dlp": {},
124125
"packages/google-storagetransfer": {},
125126
"packages/grafeas": {},
126127
"packages/typeless-sample-bot": {}

0 commit comments

Comments
 (0)