Skip to content

Commit 6e2a950

Browse files
committed
build: ignore bazel major version updates
Ignore bazel major version updates
1 parent de7a372 commit 6e2a950

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

renovate-presets/default.json5

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
// Group all non-major updates (minor and patch) together
4141
{
4242
"groupName": "all non-major dependencies",
43-
"matchPackageNames": [
43+
"matchDepNames": [
4444
"*",
4545
"!node",
4646
"!pnpm",
@@ -70,7 +70,7 @@
7070
"followTag": "next",
7171
"separateMajorMinor": false,
7272
"schedule": ["at any time"],
73-
"matchPackageNames": [
73+
"matchDepNames": [
7474
"@angular-devkit/**",
7575
"@angular/**",
7676
"@schematics/**",
@@ -87,19 +87,19 @@
8787

8888
// Keep minor and patch updates separate for TypeScript
8989
{
90-
"matchPackageNames": ["typescript"],
90+
"matchDepNames": ["typescript"],
9191
"separateMinorPatch": true
9292
},
9393

9494
// Group TypeScript-related packages
9595
{
9696
"groupName": "typescript dependencies",
97-
"matchPackageNames": ["typescript", "tslib"]
97+
"matchDepNames": ["typescript", "tslib"]
9898
},
9999

100100
// Limit how many times these packages get updated (They deploy each merged PR)
101101
{
102-
"matchPackageNames": ["renovate", "quicktype-core"],
102+
"matchDepNames": ["renovate", "quicktype-core"],
103103
"schedule": ["on sunday and wednesday"]
104104
},
105105

@@ -111,7 +111,7 @@
111111
{
112112
"groupName": "scorecard action dependencies",
113113
"matchFileNames": [".github/workflows/scorecard.yml"],
114-
"matchPackageNames": ["*"]
114+
"matchDepNames": ["*"]
115115
},
116116

117117
// ============================================================================
@@ -127,7 +127,10 @@
127127
// Disable major updates for specified dependencies
128128
{
129129
"enabled": false,
130-
"matchPackageNames": [
130+
"matchDepNames": [
131+
"bazel"
132+
],
133+
"matchDepNames": [
131134
"@types/node",
132135
"node",
133136
"npm",
@@ -142,7 +145,7 @@
142145
// Disable TypeScript major and minor updates
143146
{
144147
"enabled": false,
145-
"matchPackageNames": ["typescript"],
148+
"matchDepNames": ["typescript"],
146149
"matchUpdateTypes": ["major", "minor"]
147150
}
148151
]

0 commit comments

Comments
 (0)