We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fed4054 commit fc92de9Copy full SHA for fc92de9
evergreen.py
@@ -349,7 +349,11 @@ def get_repos_iterator(
349
# Use GitHub search API if REPOSITORY_SEARCH_QUERY is set
350
if search_query:
351
# Return repositories matching the search query
352
- return github_connection.search_repositories(search_query)
+ repos = []
353
+ # Search results need to be converted to a list of repositories since they are returned as a search iterator
354
+ for repo in github_connection.search_repositories(search_query):
355
+ repos.append(repo.repository)
356
+ return repos
357
358
repos = []
359
# Default behavior: list all organization/team repositories or specific repository list
0 commit comments