From fce9738cf6b6ad6533437f96cdfb40167d909c65 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Sun, 29 Nov 2020 16:46:48 -0800 Subject: [PATCH] Sleep longer, hopefully help workaround #51 --- .github/workflows/deploy-demo.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/deploy-demo.yml b/.github/workflows/deploy-demo.yml index 1509f87..58a104d 100644 --- a/.github/workflows/deploy-demo.yml +++ b/.github/workflows/deploy-demo.yml @@ -54,31 +54,31 @@ jobs: --csv --no-headers | while read repo; do github-to-sqlite releases \ github.db $(echo $repo | tr -d '\r'); - sleep 2; + sleep 10; github-to-sqlite commits \ github.db $(echo $repo | tr -d '\r'); - sleep 2; + sleep 10; github-to-sqlite tags \ github.db $(echo $repo | tr -d '\r'); - sleep 2; + sleep 10; github-to-sqlite contributors \ github.db $(echo $repo | tr -d '\r'); - sleep 2; + sleep 10; github-to-sqlite issues \ github.db $(echo $repo | tr -d '\r'); - sleep 2; + sleep 10; github-to-sqlite pull-requests \ github.db $(echo $repo | tr -d '\r'); - sleep 2; + sleep 10; github-to-sqlite issue-comments \ github.db $(echo $repo | tr -d '\r'); - sleep 2; + sleep 10; github-to-sqlite stargazers \ github.db $(echo $repo | tr -d '\r'); - sleep 2; + sleep 10; github-to-sqlite workflows \ github.db $(echo $repo | tr -d '\r'); - sleep 2; + sleep 10; done; # Scrape dependents github-to-sqlite scrape-dependents github.db simonw/datasette simonw/sqlite-utils -v