From e1b9fd9b51a6f437992a8f9d5a83a128687a830f Mon Sep 17 00:00:00 2001 From: sidey79 <7968127+sidey79@users.noreply.github.com> Date: Sun, 31 Jan 2021 11:20:33 +0100 Subject: [PATCH] add second chance of fetch --- .github/workflows/mirror.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/mirror.yml b/.github/workflows/mirror.yml index 60473327e..99ed8b9de 100644 --- a/.github/workflows/mirror.yml +++ b/.github/workflows/mirror.yml @@ -76,7 +76,7 @@ jobs: echo "::set-output name=SVN_FETCH_STATUS::incomplete" cd "${GITHUB_WORKSPACE}/src/fhem-mirror"; RET=0 - timeout 1200 git svn -q fetch || RET=$?; # Limit each run to 20 minutes to not overload fhem.de servers and build cache in chunks + timeout 1200 git svn -q fetch || timeout 120 git svn -q fetch || RET=$?; # Limit each run to 20 minutes to not overload fhem.de servers and build cache in chunks if [[ $RET == 0 ]]; then git checkout -f "master" git rebase "remotes/svn/trunk"