Simplify testing of renovate
's configuration
#31603
davinkevin
started this conversation in
Suggest an Idea
Replies: 1 comment 3 replies
-
How specifically are you testing it? e.g. it sounds like you would be checking through the logs for signs of problems? To compare how many branches would be created or deleted? |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Tell us more.
Hello 👋
This is a follow up after this comment.
As a developer, I would like to "test" a change in the repo configuration. For that, I follow the usual dev-workflow, where I create a feature-branch and update the
renovate.json5
file. Then I push my branch, making it available to every processes or automation.For my local tests, in dry-run mode, I use the following command:
The issue with this logic is I can't override all configurations from default branch by the configuration's feature-branch I have created.
The best I can do is to include the all the
renovate.json5
into myconfig_agent.js
and setrequireConfig: ignored
andonboarding: false
… but it's complicated and not even the same format (js
vsjson5
).It's maybe optimistic to propose a solution, but from a user perspective, it would be good to have a flag where I can say "trust this branch and ignore everything else from the repo". And this would be a parameter at the
config.js
level where I provide the branchName.Thank you for your help and wonderful product 😇
Beta Was this translation helpful? Give feedback.
All reactions