Skip to content

Commit 585691b

Browse files
authored
Make the repo sync stall check less aggressive (#17018)
Co-authored-by: chiedo <chiedo@users.noreply.github.com>
1 parent d9f2917 commit 585691b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/repo-sync-stalls.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
const timeDelta = Date.now() - Date.parse(pr.created_at);
4141
const minutesOpen = timeDelta / 1000 / 60;
4242
43-
if (minutesOpen > 30) {
43+
if (minutesOpen > 180) {
4444
core.setFailed('Repo sync appears to be stalled')
4545
}
4646
})

0 commit comments

Comments
 (0)