Skip to content

Commit

Permalink
fix: Provide link to the relevant cli switch to include forked repos (#…
Browse files Browse the repository at this point in the history
…20207)

Co-authored-by: Rhys Arkins <rhys@arkins.net>
  • Loading branch information
jessehouwing and rarkins authored Jun 18, 2023
1 parent 66b82ac commit 4349b38
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/workers/repository/error.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,9 @@ export default async function handleError(
return err.message;
}
if (err.message === REPOSITORY_FORKED) {
logger.info('Repository is a fork and not manually configured - skipping');
logger.info(
'Repository is a fork and not manually configured - skipping - did you want to run with flag --include-forks?'
);
return err.message;
}
if (err.message === REPOSITORY_CANNOT_FORK) {
Expand Down

0 comments on commit 4349b38

Please sign in to comment.