[BUG] Use correct headcommitid
Regression of #2507, which switched the HEAD from `pr.GetGitRefName()` to `pr.HeadCommitID` but it had to be `prInfo.HeadCommitID`. Resolves #2656 I was able to reproduce this locally with _some_ pull requests, haven't been able to get a reproducer trough integration testing.
This commit is contained in:
parent
98f1fe7944
commit
a4cc37b46a
1 changed files with 1 additions and 1 deletions
|
@ -932,7 +932,7 @@ func PullRequestCodeOwnersReview(ctx context.Context, pull *Issue, pr *PullReque
|
|||
}
|
||||
// Use the merge base as the base instead of the main branch to avoid problems
|
||||
// if the pull request is out of date with the base branch.
|
||||
changedFiles, err := repo.GetFilesChangedBetween(prInfo.MergeBase, pr.HeadCommitID)
|
||||
changedFiles, err := repo.GetFilesChangedBetween(prInfo.MergeBase, prInfo.HeadCommitID)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue