-
Notifications
You must be signed in to change notification settings - Fork 16
[Q] Disable upgrading node version #81
Comments
The "packageRules": [{
"packageNames": ["node"],
"enabled": false
}] |
Thanks! I'll give that a go. In my case I use a "package manager" ( |
Hmm, I am trying to do the same thing: pin and keep updating my Node dependencies in
I have set the renovate.json to {
"extends": [
"config:base"
],
"automerge": false,
"rangeStrategy": "pin",
"packageRules": [
{
"packageNames": [
"node"
],
"enabled": false
}
]
} and now no PRs from RenovateBot to https://github.com/bahmutov/test-renovate-monorepo/pulls :( Would be nice to disable |
@bahmutov I would suggest opening a separate question as it is different enough from the original. You can still reference this one, but I fear your question may be lost or not found by the next person. |
@bahmutov looks like your repo was just rate limited for previous hour, e.g.
|
Also some are blocked by previous PRs that you closed unmerged. You can set |
Nice! I see updates now for dependencies, while |
I am trying to configure renovate to not update the version of
node
defined in theengines
section ofpackage.json
. I am running code on AWS Lambda which supports specific versions of Node.js.I've tried the
node
configuration option without much luck, perhaps there is a different setting to use?renovate.json
:package.json
:Thanks
The text was updated successfully, but these errors were encountered: