Skip to content

Commit a5cad85

Browse files
authored
fix: update log message when attempting to locate merge base (#2493)
1 parent f2f439b commit a5cad85

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/commitSha.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -561,7 +561,9 @@ export const getSHAForPullRequestEvent = async ({
561561
core.info(
562562
'Merge base is not in the local history, fetching remote target branch again...'
563563
)
564-
core.info(`Attempt ${i}/10`)
564+
core.info(
565+
`Attempt ${i}/${inputs.fetchMissingHistoryMaxRetries || 10}`
566+
)
565567
}
566568
}
567569
}

0 commit comments

Comments
 (0)