ci: improve renovate configuration (#41434)

With this change we add several packages to ignored `ignoreDeps` as these packages cannot be updated safely as they cause a large number of errors.

In addition, we add a group for `remark` packages.

PR Close #41434
This commit is contained in:
Alan Agius 2021-04-05 11:58:28 +02:00 committed by Zach Arend
parent ed7d288364
commit 0bc52c10d5
1 changed files with 26 additions and 4 deletions

View File

@ -23,8 +23,22 @@
"master"
],
"ignoreDeps": [
"@babel/core",
"@babel/generator",
"@babel/parser",
"@babel/preset-env",
"@babel/template",
"@babel/traverse",
"@babel/types",
"@types/babel__core",
"@types/babel__generator",
"@types/babel__template",
"@types/babel__traverse",
"@types/node",
"@microsoft/api-extractor"
"@types/selenium-webdriver",
"@microsoft/api-extractor",
"puppeteer",
"selenium-webdriver"
],
"packageFiles": [
"WORKSPACE",
@ -41,14 +55,14 @@
"^@angular-devkit/.*",
"^@schematics/.*"
],
"groupName": "Angular",
"groupName": "angular",
"pinVersions": false
},
{
"packagePatterns": [
"^@babel/.*"
],
"groupName": "Babel",
"groupName": "babel",
"pinVersions": false
},
{
@ -57,7 +71,15 @@
"^build_bazel.*",
"bazel_toolchains"
],
"groupName": "Bazel",
"groupName": "bazel",
"pinVersions": false
},
{
"packagePatterns": [
"^remark-.*",
"remark"
],
"groupName": "remark",
"pinVersions": false
},
{