Check for comments in copilot

This commit is contained in:
Heiner Lohaus 2024-01-23 05:03:26 +01:00
parent 2193d18865
commit b6feec9e7d
1 changed files with 1 additions and 1 deletions

View File

@ -217,7 +217,7 @@ def main():
if not pull:
print(f"No PR number found")
exit()
if pull.get_reviews().totalCount > 0 or pull.get_comments().totalCount > 0:
if pull.get_reviews().totalCount > 0 or pull.get_issue_comments().totalCount > 0:
print(f"Has already a review")
exit()
diff = get_diff(pull.diff_url)