mirror of
https://github.com/qodo-ai/pr-agent.git
synced 2025-12-12 02:45:18 +00:00
fix: correct variable name for last merge source commit in Azure DevOps provider (#2018)
This commit is contained in:
parent
c84a602d3a
commit
0f8606b899
1 changed files with 1 additions and 1 deletions
|
|
@ -196,7 +196,7 @@ class AzureDevopsProvider(GitProvider):
|
|||
return self.diff_files
|
||||
|
||||
base_sha = self.pr.last_merge_target_commit
|
||||
head_sha = self.pr.last_merge_source_commit
|
||||
head_sha = self.pr.last_merge_commit
|
||||
|
||||
# Get PR iterations
|
||||
iterations = self.azure_devops_client.get_pull_request_iterations(
|
||||
|
|
|
|||
Loading…
Reference in a new issue