Shared presets file is ignored #8457
-
I'd like to central our renovate configuration into a single presets file for a number of projects stored in Gitlab
I have followed the help and
I have then replaced the contents of the renovate.json in one of the projects with:
When I run renovate, it doesn't appear to apply the presets defined in my central renovate.json.
Any ideas what I could have missed out? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
Convert it to a plain JSON config like this instead: {
"extends": ["config:base", "docker:enableMajor", ":semanticCommitTypeAll(fix)"],
"automerge": true,
"major": {
"automerge": false
},
"gomod": {
"postUpdateOptions": ["gomodTidy"]
}
} |
Beta Was this translation helpful? Give feedback.
-
@nosajsnikta Where did you found this sample? |
Beta Was this translation helpful? Give feedback.
Convert it to a plain JSON config like this instead: