mirror of
https://github.com/qodo-ai/pr-agent.git
synced 2025-07-04 04:40:38 +08:00
Add context-aware git provider retrieval and refactor related functions
This commit is contained in:
@ -38,6 +38,7 @@ class GithubProvider(GitProvider):
|
|||||||
if pr_url and 'pull' in pr_url:
|
if pr_url and 'pull' in pr_url:
|
||||||
self.set_pr(pr_url)
|
self.set_pr(pr_url)
|
||||||
self.pr_commits = list(self.pr.get_commits())
|
self.pr_commits = list(self.pr.get_commits())
|
||||||
|
self.last_commit_id = self.pr_commits[-1]
|
||||||
self.pr_url = self.get_pr_url() # pr_url for github actions can be as api.github.com, so we need to get the url from the pr object
|
self.pr_url = self.get_pr_url() # pr_url for github actions can be as api.github.com, so we need to get the url from the pr object
|
||||||
else:
|
else:
|
||||||
self.pr_commits = None
|
self.pr_commits = None
|
||||||
@ -47,8 +48,6 @@ class GithubProvider(GitProvider):
|
|||||||
if self.incremental.is_incremental:
|
if self.incremental.is_incremental:
|
||||||
self.unreviewed_files_set = dict()
|
self.unreviewed_files_set = dict()
|
||||||
self._get_incremental_commits()
|
self._get_incremental_commits()
|
||||||
self.last_commit_id = self.pr_commits[-1]
|
|
||||||
|
|
||||||
|
|
||||||
def is_supported(self, capability: str) -> bool:
|
def is_supported(self, capability: str) -> bool:
|
||||||
return True
|
return True
|
||||||
|
Reference in New Issue
Block a user