mirror of
https://github.com/qodo-ai/pr-agent.git
synced 2025-07-18 03:20:39 +08:00
Implement edit comment
This commit is contained in:
@ -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
|
||||
|
||||
|
Reference in New Issue
Block a user