From 9fffeb6c0391d829300ae84725c5111250a34979 Mon Sep 17 00:00:00 2001 From: Gao Sun Date: Mon, 11 Jul 2022 18:08:09 +0800 Subject: [PATCH] Sleep 5 seconds after status checks are done (#131) --- entrypoint.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/entrypoint.sh b/entrypoint.sh index 91129d7..b1d07d6 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -171,6 +171,8 @@ esac { # Possibly wait for status checks to complete wait_for_checks && + # Sleep 5 seconds to add addtional time buffer for status checks + sleep 5 && # Unprotect target branch for pull request reviews (if desired) unprotect &&