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 2343033 commit b307820
Show file tree
Hide file tree
Showing 10 changed files with 753 additions and 26 deletions.
1 change: 1 addition & 0 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"packages/google-cloud-language": "5.1.2",
"packages/google-cloud-memcache": "2.1.4",
"packages/google-cloud-monitoring": "3.0.3",
"packages/google-cloud-osconfig": "2.1.2",
"packages/google-cloud-oslogin": "4.0.4",
"packages/google-cloud-phishingprotection": "3.0.6",
"packages/google-cloud-policytroubleshooter": "2.0.6",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@
# 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
Expand All @@ -21,8 +19,8 @@ deep-preserve-regex:
- /owl-bot-staging/v1beta

deep-copy-regex:
- source: /google/cloud/osconfig/(v.*)/.*-nodejs/(.*)
dest: /owl-bot-staging/$1/$2
- source: /google/cloud/osconfig/(v.*)/.*-nodejs
dest: /owl-bot-staging/google-cloud-osconfig/$1

begin-after-commit-hash: fb91803ccef5d7c695139b22788b309e2197856b

2 changes: 1 addition & 1 deletion packages/google-cloud-osconfig/.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-osconfig/.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-osconfig/.repo-metadata.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"language": "nodejs",
"product_documentation": "https://cloud.google.com/compute/docs/os-patch-management",
"repo": "googleapis/nodejs-os-config",
"repo": "googleapis/google-cloud-node",
"repo_short": "nodejs-os-config",
"default_version": "v1",
"api_description": "provides OS management tools that can be used for patch management, patch compliance, and configuration management on VM instances.",
Expand Down
52 changes: 45 additions & 7 deletions packages/google-cloud-osconfig/README.md

Large diffs are not rendered by default.

13 changes: 9 additions & 4 deletions packages/google-cloud-osconfig/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
"name": "@google-cloud/os-config",
"version": "2.1.2",
"description": "Osconfig client for Node.js",
"repository": "googleapis/nodejs-os-config",
"repository": {
"type": "git",
"directory": "packages/google-cloud-osconfig",
"url": "https://github.com/googleapis/google-cloud-node.git"
},
"license": "Apache-2.0",
"author": "Google LLC",
"main": "build/src/index.js",
Expand All @@ -22,8 +26,8 @@
"lint": "gts check",
"prelint": "cd samples; npm link ../; npm install",
"prepare": "npm run compile-protos && npm run compile",
"samples-test": "cd samples/ && npm link ../ && npm install && npm test && cd ../",
"system-test": "c8 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",
"test": "c8 mocha build/test"
},
"dependencies": {
Expand All @@ -48,5 +52,6 @@
},
"engines": {
"node": ">=12.0.0"
}
},
"homepage": "https://github.com/googleapis/google-cloud-node/tree/main/packages/google-cloud-osconfig"
}
Loading

0 comments on commit b307820

Please sign in to comment.