Weird extra merge request created #27792
-
What would you like help with?I would like help with my configuration How are you running Renovate?Self-hosted If you're self-hosting Renovate, tell us which platform (GitHub, GitLab, etc) and which version of Renovate.Gitlab Please tell us more about your question or problemI have configured the renovate to merge all the upgrade into one pull request but the dependency "lodash" is always created individually. Posting the help here as I am not sure if this is a bug or there is something wrong with my configuration. Package.json
Renovate configuration
Logs (if relevant)Logs
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 8 replies
-
You have placed your grouping rule in your config.js, which is not a good idea if you don't want it overridden. It's being overridden by repo config, which probably extends config:recommended. If you want config to take precedence over presets then the config needs to be in the repo config, not the bot config. The precedence is bot config < repo presets < repo config |
Beta Was this translation helpful? Give feedback.
In future, please avoid leaving config out ("...") like this again:
The reason for your problem was in the "..." you decided to leave out. It's this:
This preset contains rules for monorepos, including lodash. Because it's set in
extends
, it's passed through as repo presets, and repo config takes precedence over admin config. If you want presets resolved as part of bot config, change that extends to globalExtends.