diff options
author | 2021-04-08 03:15:47 +0100 | |
---|---|---|
committer | 2021-04-08 03:15:47 +0100 | |
commit | fd2ff1d06e31a9b0f412c2a81e373bf46fe192f7 (patch) | |
tree | 03e1c3b890602704496d39f3af8be95cba80bf13 | |
parent | Merge pull request #657 from python-discord/vcokltfre-avatar (diff) |
increase the number of repos per page we fetch from github
-rw-r--r-- | bot/exts/evergreen/issues.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/evergreen/issues.py b/bot/exts/evergreen/issues.py index 4a73d20b..58f9d7aa 100644 --- a/bot/exts/evergreen/issues.py +++ b/bot/exts/evergreen/issues.py @@ -28,7 +28,7 @@ BAD_RESPONSE = { MAX_REQUESTS = 10 REQUEST_HEADERS = dict() -REPOS_API = "https://api.github.com/orgs/{org}/repos" +REPOS_API = "https://api.github.com/orgs/{org}/repos?per_page=100" if GITHUB_TOKEN := Tokens.github: REQUEST_HEADERS["Authorization"] = f"token {GITHUB_TOKEN}" |