Skip to content

Commit 65aef96

Browse files
committed
Auto merge of #4151 - Turbo87:renovate-node, r=Turbo87
renovate: Adjust `node` package grouping #4148 introduced a new way for renovatebot to update our Node.js version, but it wasn't perfectly compatible with the others yet. This PR fixes the issue, and unifies how renovatebot updates the Node.js versions in all of the relevant files.
2 parents 1a67392 + d037b69 commit 65aef96

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/renovate.json5

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,21 @@
6565
"matchPackageNames": ["rust"],
6666
"commitMessageTopic": "Rust",
6767
"labels": ["A-backend"],
68+
}, {
69+
// Groups the `NODE_VERSION` update with the rest of the Node.js updates
70+
// and assigns the `A-frontend` label to the PR.
71+
"matchManagers": ["regex"],
72+
"matchPackageNames": ["node"],
73+
"commitMessageTopic": "Node.js",
74+
"labels": ["A-frontend"],
75+
}, {
76+
// Use `semver` versioning scheme, instead of `node`. Ideally we would
77+
// use `node`, which differentiates between LTS and non-LTS releases,
78+
// but that is not compatible with the `nodejs/node` Docker image
79+
// updates.
80+
"matchManagers": ["npm"],
81+
"matchPackageNames": ["node"],
82+
"versioning": "semver",
6883
}, {
6984
"matchPackagePatterns": [
7085
"^conduit$",

0 commit comments

Comments
 (0)