aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Matteo Bertucci <[email protected]>2021-04-08 09:24:29 +0200
committerGravatar GitHub <[email protected]>2021-04-08 09:24:29 +0200
commit89e1458fd0df0c59460ad6ea85f3bb7b134926d8 (patch)
tree9e23c460db9fbf4867aac4d7fe50edc0d45f5c3d
parentMerge branch 'main' into akarys/630/automatic-linking-everywhere (diff)
parentMerge branch 'akarys/630/automatic-linking-everywhere' into issues-more-repos (diff)
Merge pull request #662 from python-discord/issues-more-repos
Fix issues with repos not working when typing repo#num
-rw-r--r--bot/exts/evergreen/issues.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/evergreen/issues.py b/bot/exts/evergreen/issues.py
index d8b373d7..05595a56 100644
--- a/bot/exts/evergreen/issues.py
+++ b/bot/exts/evergreen/issues.py
@@ -28,7 +28,7 @@ BAD_RESPONSE = {
}
REQUEST_HEADERS = dict()
-REPOSITORY_ENDPOINT = "https://api.github.com/orgs/{org}/repos"
+REPOSITORY_ENDPOINT = "https://api.github.com/orgs/{org}/repos?per_page=100"
ISSUE_ENDPOINT = "https://api.github.com/repos/{user}/{repository}/issues/{number}"
PR_MERGE_ENDPOINT = "https://api.github.com/repos/{user}/{repository}/pulls/{number}/merge"