Merge pull request #1494 from hlohaus/neww

No PR number found
This commit is contained in:
H Lohaus 2024-01-21 17:42:03 +01:00 committed by GitHub
commit c809346b43
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 1 deletions

View File

@ -32,7 +32,9 @@ def get_pr_details(github: Github) -> PullRequest:
"""
'./pr_number'
with open('./pr_number', 'r') as file:
pr_number = file.read()
pr_number = int(file.read())
if not pr_number:
return
repo = github.get_repo(GITHUB_REPOSITORY)
pull = repo.get_pull(pr_number)
@ -214,6 +216,9 @@ def main():
try:
github = Github(GITHUB_TOKEN)
pull = get_pr_details(github)
if not pull:
print(f"No PR number found")
exit()
diff = get_diff(pull.diff_url)
except Exception as e:
print(f"Error get details: {e.__class__.__name__}: {e}")