chore(renovate): improve PR grouping and add @pichlermarc to assignees (#3868)
* chore(renovate): improve PR grouping and add @pichlermarc to assingees * chore: fix 'compatability' typo
This commit is contained in:
parent
69da5d548e
commit
3d7015121c
|
@ -23,7 +23,7 @@ jobs:
|
|||
path: |
|
||||
package-lock.json
|
||||
packages/*/package-lock.json
|
||||
backwards-compatability/*/package-lock.json
|
||||
backwards-compatibility/*/package-lock.json
|
||||
metapackages/*/package-lock.json
|
||||
packages/*/package-lock.json
|
||||
integration-tests/*/package-lock.json
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
"name": "backcompat-node14",
|
||||
"version": "0.40.0",
|
||||
"private": true,
|
||||
"description": "Backwards compatability app for node 14 types and the OpenTelemetry Node.js SDK",
|
||||
"description": "Backwards compatibility app for node 14 types and the OpenTelemetry Node.js SDK",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test:backcompat": "tsc --noEmit index.ts && tsc --noEmit --esModuleInterop index.ts",
|
|
@ -2,7 +2,7 @@
|
|||
"name": "backcompat-node16",
|
||||
"version": "0.40.0",
|
||||
"private": true,
|
||||
"description": "Backwards compatability app for node 16 types and the OpenTelemetry Node.js SDK",
|
||||
"description": "Backwards compatibility app for node 16 types and the OpenTelemetry Node.js SDK",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test:backcompat": "tsc --noEmit index.ts && tsc --noEmit --esModuleInterop index.ts",
|
|
@ -6,7 +6,7 @@
|
|||
"packages/*",
|
||||
"experimental/packages/*",
|
||||
"experimental/examples/*",
|
||||
"experimental/backwards-compatability/*",
|
||||
"experimental/backwards-compatibility/*",
|
||||
"integration-tests/*",
|
||||
"selenium-tests",
|
||||
"examples/otlp-exporter-node",
|
||||
|
|
|
@ -2,18 +2,31 @@
|
|||
"extends": ["config:base"],
|
||||
"packageRules": [
|
||||
{
|
||||
"groupName": "all non-major dependencies",
|
||||
"groupSlug": "all-minor-patch",
|
||||
"matchUpdateTypes": ["patch", "minor"]
|
||||
"groupName": "all patch versions",
|
||||
"groupSlug": "all-patch",
|
||||
"matchUpdateTypes": ["patch"],
|
||||
"excludePackageNames": ["prettier"],
|
||||
"schedule": ["before 3am every weekday"]
|
||||
},
|
||||
{
|
||||
"matchPaths": ["backwards-compatibility"],
|
||||
"matchUpdateTypes": ["minor"],
|
||||
"dependencyDashboardApproval": true
|
||||
},
|
||||
{
|
||||
"matchUpdateTypes": ["major"],
|
||||
"schedule": ["before 3am on Monday"]
|
||||
},
|
||||
{
|
||||
"matchPackageNames": ["typescript", "webpack", "webpack-cli"],
|
||||
"dependencyDashboardApproval": true
|
||||
},
|
||||
{
|
||||
"matchPaths": ["experimental/backwards-compatibility/**"],
|
||||
"matchPackageNames": ["@types/node"],
|
||||
"enabled": false
|
||||
}
|
||||
],
|
||||
"ignoreDeps": ["gcp-metadata", "got", "mocha", "husky", "karma-webpack", "@opentelemetry/api"],
|
||||
"assignees": ["@blumamir", "@dyladan", "@legendecas"],
|
||||
"schedule": ["before 3am on Friday"],
|
||||
"ignoreDeps": ["@opentelemetry/api", "@opentelemetry/resources_1.9.0"],
|
||||
"assignees": ["@blumamir", "@dyladan", "@legendecas", "@pichlermarc"],
|
||||
"labels": ["dependencies"]
|
||||
}
|
||||
|
|
|
@ -45,7 +45,7 @@ const tsConfigMergeKeys = [
|
|||
const tsConfigPriorityKeys = ['extends'];
|
||||
const ignoredLernaProjects = [
|
||||
'experimental/examples/*',
|
||||
'experimental/backwards-compatability/*',
|
||||
'experimental/backwards-compatibility/*',
|
||||
'integration-tests/*',
|
||||
'selenium-tests',
|
||||
'examples/otlp-exporter-node',
|
||||
|
|
Loading…
Reference in New Issue