Skip to content

Commit

Permalink
Sleep longer, hopefully help workaround #51
Browse files Browse the repository at this point in the history
  • Loading branch information
simonw committed Nov 30, 2020
1 parent 160bfc3 commit fce9738
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/deploy-demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit fce9738

Please sign in to comment.