Merge branch 'main' into hl/gitlab_fix

This commit is contained in:
Hussam Lawen
2023-07-14 22:48:13 +03:00
committed by GitHub
14 changed files with 155 additions and 24 deletions

View File

@ -25,6 +25,10 @@ class GitProvider(ABC):
def get_diff_files(self) -> list[FilePatchInfo]:
pass
@abstractmethod
def publish_description(self, pr_title: str, pr_body: str):
pass
@abstractmethod
def publish_comment(self, pr_comment: str, is_temporary: bool = False):
pass