-
Notifications
You must be signed in to change notification settings - Fork 156
Closed
Description
Hey, I'm trying to migrate my stuff from GitHub Pages to an external hosting. Part of that process is getting rid of the github-pages gem and replacing it with a newer Jekyll version. I also use github-metadata. But, when I did the upgrade (in commit egor-tensin/egor-tensin.github.io@d231c9b), github-metadata started making API calls for each and every repository that I have (this is just an excerpt):
Incremental build: disabled. Enable with --incremental
Generating...
GitHub Metadata: Generating for egor-tensin/egor-tensin.github.io
GitHub Metadata: Calling @client.repository("egor-tensin/egor-tensin.github.io", {:accept=>"application/vnd.github.drax-preview+json"})
GitHub Metadata: Calling @client.pages("egor-tensin/egor-tensin.github.io", {})
GitHub Metadata: Calling @client.contributors("egor-tensin/egor-tensin.github.io")
GitHub Metadata: Calling @client.latest_release("egor-tensin/egor-tensin.github.io")
GitHub Metadata: Calling @client.organization("egor-tensin")
GitHub Metadata: Calling @client.organization("egor-tensin")
GitHub Metadata: Calling @client.user("egor-tensin")
GitHub Metadata: Calling @client.list_repos("egor-tensin", {:type=>"public", :accept=>"application/vnd.github.mercy-preview+json"})
GitHub Metadata: Calling @client.releases("egor-tensin/aes-tools")
GitHub Metadata: Calling @client.contributors("egor-tensin/aes-tools")
GitHub Metadata: Calling @client.releases("egor-tensin/blog")
GitHub Metadata: Calling @client.contributors("egor-tensin/blog")
GitHub Metadata: Calling @client.releases("egor-tensin/build-boost")
GitHub Metadata: Calling @client.contributors("egor-tensin/build-boost")
And it goes on doing 2 calls for every repository of mine, which takes too long. What am I doing wrong?