This commit is contained in:
mrT23
2023-09-21 21:29:41 +03:00
parent 04162564ca
commit be54fb5bf8
4 changed files with 18 additions and 2 deletions

View File

@ -446,3 +446,10 @@ class GithubProvider(GitProvider):
logging.info(f"Failed adding line link, error: {e}")
return ""
def get_pr_id(self):
try:
pr_id = f"{self.repo}/{self.pr_num}"
return pr_id
except:
return ""