Add functionality to calculate and log PR statistics on closure

This commit is contained in:
mrT23
2024-02-26 20:02:11 +02:00
parent 34fe2721fb
commit 4921c26432
3 changed files with 36 additions and 2 deletions

View File

@ -190,6 +190,8 @@ class GitProvider(ABC):
def auto_approve(self) -> bool:
return False
def calc_pr_statistics(self, pull_request_data: dict):
return {}
def get_main_pr_language(languages, files) -> str: