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 7725657 commit bbef752
Show file tree
Hide file tree
Showing 10 changed files with 545 additions and 27 deletions.
1 change: 1 addition & 0 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
"packages/google-container": "4.4.0",
"packages/google-devtools-artifactregistry": "2.0.2",
"packages/google-iam": "0.2.2",
"packages/google-identity-accesscontextmanager": "2.2.0",
"packages/google-maps-addressvalidation": "0.1.0",
"packages/google-maps-routing": "0.2.1",
"packages/google-monitoring-dashboard": "2.8.0",
Expand Down
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/identity/accesscontextmanager/(.*)/.*-nodejs/(.*)
dest: /owl-bot-staging/$1/$2
- source: /google/identity/accesscontextmanager/(.*)/.*-nodejs
dest: /owl-bot-staging/google-identity-accesscontextmanager/$1
2 changes: 1 addition & 1 deletion packages/google-identity-accesscontextmanager/.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
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
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
"name_pretty": "Access Context Manager",
"product_documentation": "https://cloud.google.com/access-context-manager/",
"client_documentation": "https://cloud.google.com/nodejs/docs/reference/access-context-manager/latest",
"issue_tracker": "https://github.com/googleapis/nodejs-access-context-manager/issues",
"issue_tracker": "https://github.com/googleapis/google-cloud-node/issues",
"release_level": "stable",
"language": "nodejs",
"repo": "googleapis/nodejs-access-context-manager",
"repo": "googleapis/google-cloud-node",
"distribution_name": "@google-cloud/access-context-manager",
"api_id": "accesscontextmanager.googleapis.com",
"default_version": "v1",
Expand Down
41 changes: 34 additions & 7 deletions packages/google-identity-accesscontextmanager/README.md

Large diffs are not rendered by default.

13 changes: 9 additions & 4 deletions packages/google-identity-accesscontextmanager/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
"name": "@google-cloud/access-context-manager",
"version": "2.2.0",
"description": "accesscontextmanager client for Node.js",
"repository": "googleapis/nodejs-access-context-manager",
"repository": {
"type": "git",
"directory": "packages/google-identity-accesscontextmanager",
"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": ">=12.0.0"
}
},
"homepage": "https://github.com/googleapis/google-cloud-node/tree/main/packages/google-identity-accesscontextmanager"
}
Loading

0 comments on commit bbef752

Please sign in to comment.