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.
2 parents 8120b56 + 768d3ba commit c33993eCopy full SHA for c33993e
llvm/utils/git/github-automation.py
@@ -270,6 +270,7 @@ def run(self) -> bool:
270
merged_by = {}
271
reviewed_by = {}
272
for i in self.repo.get_issues(creator=self.issue.user.login, state="all"):
273
+ print("Looking at issue:", i)
274
issue_reviewed_by = set()
275
try:
276
pr = i.as_pull_request()
@@ -292,7 +293,8 @@ def run(self) -> bool:
292
293
merged_by[merger] += 1
294
continue
295
- except github.GithubException:
296
+ except github.GithubException as e:
297
+ print(e)
298
299
300
comment = f"""
0 commit comments