From d0cd6fae8ef9a4a65f40ccf280934d54d2295a28 Mon Sep 17 00:00:00 2001 From: Scott Busche <swbusche@gmail.com> Date: Mon, 5 Feb 2024 14:04:49 -0600 Subject: [PATCH] fix(docs): Update outdated error message (#27079) --- lib/workers/repository/error.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/workers/repository/error.ts b/lib/workers/repository/error.ts index 0ec3d982cc..9433458deb 100644 --- a/lib/workers/repository/error.ts +++ b/lib/workers/repository/error.ts @@ -95,7 +95,7 @@ export default async function handleError( } if (err.message === REPOSITORY_FORKED) { logger.info( - 'Repository is a fork and not manually configured - skipping - did you want to run with flag --include-forks?', + 'Repository is a fork and not manually configured - skipping - did you want to run with --fork-processing=enabled?', ); return err.message; } -- GitLab