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 bece4b3 commit c643fceCopy full SHA for c643fce
gfi/populate.py
@@ -79,6 +79,9 @@ def get_repository_info(owner, name):
79
# get the repository; if the repo is not found, log a warning
80
try:
81
repository = client.repository(owner, name)
82
+ # Don't find issues inside archived repos.
83
+ if repository.archived:
84
+ return None
85
86
good_first_issues = set(
87
itertools.chain.from_iterable(
0 commit comments