Implement edit comment

This commit is contained in:
Hussam.lawen
2024-02-11 12:31:30 +02:00
parent a40643bbba
commit 73d2b1565d
4 changed files with 21 additions and 0 deletions

View File

@ -395,6 +395,9 @@ class GithubProvider(GitProvider):
except Exception as e:
get_logger().exception(f"Failed to remove comment, error: {e}")
def edit_comment(self, comment, body: str):
comment.edit(body=body)
def get_title(self):
return self.pr.title