Skip to content

Commit

Permalink
Fill head commit to in payload when notifying push commits for mirror…
Browse files Browse the repository at this point in the history
  • Loading branch information
4 people authored Mar 4, 2023
1 parent a4158d1 commit 8142408
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions services/mirror/mirror_pull.go
Original file line number Diff line number Diff line change
Expand Up @@ -499,6 +499,13 @@ func SyncPullMirror(ctx context.Context, repoID int64) bool {
theCommits.Commits = theCommits.Commits[:setting.UI.FeedMaxCommitNum]
}

if newCommit, err := gitRepo.GetCommit(newCommitID); err != nil {
log.Error("SyncMirrors [repo: %-v]: unable to get commit %s: %v", m.Repo, newCommitID, err)
continue
} else {
theCommits.HeadCommit = repo_module.CommitToPushCommit(newCommit)
}

theCommits.CompareURL = m.Repo.ComposeCompareURL(oldCommitID, newCommitID)

notification.NotifySyncPushCommits(ctx, m.Repo.MustOwner(ctx), m.Repo, &repo_module.PushUpdateOptions{
Expand Down

0 comments on commit 8142408

Please sign in to comment.