Skip to content
Snippets Groups Projects
Commit d0d62e6e authored by Matt R. Wilson's avatar Matt R. Wilson Committed by Rhys Arkins
Browse files

Allow --renovate-fork Cli flag for onboarding.

parent 2925c0d9
No related branches found
No related tags found
No related merge requests found
...@@ -11,7 +11,7 @@ async function checkOnboardingBranch(config) { ...@@ -11,7 +11,7 @@ async function checkOnboardingBranch(config) {
logger.debug('Repo is onboarded'); logger.debug('Repo is onboarded');
return { ...config, repoIsOnboarded }; return { ...config, repoIsOnboarded };
} }
if (config.isFork) { if (config.isFork && !config.renovateFork) {
throw new Error('fork'); throw new Error('fork');
} }
logger.info('Repo is not onboarded'); logger.info('Repo is not onboarded');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment