Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ function setupCache(owner, repo) {
if (error instanceof connect_1.ConnectError && error.code === connect_1.Code.Aborted) {
const hydrationMessage = error.message || 'Initial mirror clone is running';
core.warning(`[git-mirror] Another job is hydrating the git mirror cache: ${hydrationMessage}`);
core.warning('[git-mirror] Falling back to standard checkout. Cache will be available once hydration completes.');
core.warning('[git-mirror] No sticky disk will be mounted for this run; checkout will clone directly from GitHub onto the runner disk (no mirror cache). The mirror cache will be available on subsequent runs once hydration completes.');
return {
exposeId: '',
stickyDiskKey,
Expand Down
2 changes: 1 addition & 1 deletion src/blacksmith-cache.ts
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ export async function setupCache(
`[git-mirror] Another job is hydrating the git mirror cache: ${hydrationMessage}`
)
core.warning(
'[git-mirror] Falling back to standard checkout. Cache will be available once hydration completes.'
'[git-mirror] No sticky disk will be mounted for this run; checkout will clone directly from GitHub onto the runner disk (no mirror cache). The mirror cache will be available on subsequent runs once hydration completes.'
)
return {
exposeId: '',
Expand Down
Loading