From dd0eddd55691988d80697ffdf5314da814eefb33 Mon Sep 17 00:00:00 2001 From: Simon Knott Date: Fri, 16 Aug 2024 10:20:19 +0200 Subject: [PATCH] Update packages/playwright/src/runner/vcs.ts Co-authored-by: Max Schmitt Signed-off-by: Simon Knott --- packages/playwright/src/runner/vcs.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/playwright/src/runner/vcs.ts b/packages/playwright/src/runner/vcs.ts index 6ee321b732..9403e86cde 100644 --- a/packages/playwright/src/runner/vcs.ts +++ b/packages/playwright/src/runner/vcs.ts @@ -36,7 +36,7 @@ export async function detectChangedTestFiles(baseCommit: string, configDir: stri `Revision '${baseCommit}' is not available in the local repository.`, `On CI, this is likely caused by a shallow clone.`, `To fix, clone the full repository history:`, - ' https://github.com/actions/checkout#fetch-all-history-for-all-tags-and-branches' + 'e.g. for GitHub Actions: https://github.com/actions/checkout#fetch-all-history-for-all-tags-and-branches' ].join('\n')); } }