From 552e8d0a034280f77b61f3732a7acba3356f5414 Mon Sep 17 00:00:00 2001 From: zeripath Date: Fri, 8 May 2020 15:58:40 +0100 Subject: [PATCH] Add NotifySyncPushCommits to indexer notifier (#11309) Thanks to @simon-on-gh for tracking down the issue. Fix #11200 Signed-off-by: Andrew Thornton --- modules/notification/indexer/indexer.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/notification/indexer/indexer.go b/modules/notification/indexer/indexer.go index 70ad44483b5a..f1e6366d2f07 100644 --- a/modules/notification/indexer/indexer.go +++ b/modules/notification/indexer/indexer.go @@ -124,6 +124,12 @@ func (r *indexerNotifier) NotifyPushCommits(pusher *models.User, repo *models.Re } } +func (r *indexerNotifier) NotifySyncPushCommits(pusher *models.User, repo *models.Repository, refName, oldCommitID, newCommitID string, commits *models.PushCommits) { + if setting.Indexer.RepoIndexerEnabled && refName == git.BranchPrefix+repo.DefaultBranch { + code_indexer.UpdateRepoIndexer(repo) + } +} + func (r *indexerNotifier) NotifyIssueChangeContent(doer *models.User, issue *models.Issue, oldContent string) { issue_indexer.UpdateIssueIndexer(issue) }