Browse Source

Fix repo indexer not updating upon push (#9957)

* Fix check for push on default branch

* restart CI

Co-authored-by: zeripath <art27@cantab.net>
master
guillep2k Lauris BH 5 years ago
parent
commit
dbd1fae618
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      modules/notification/indexer/indexer.go

+ 2
- 1
modules/notification/indexer/indexer.go View File

@@ -6,6 +6,7 @@ package indexer

import (
"code.gitea.io/gitea/models"
"code.gitea.io/gitea/modules/git"
code_indexer "code.gitea.io/gitea/modules/indexer/code"
issue_indexer "code.gitea.io/gitea/modules/indexer/issues"
"code.gitea.io/gitea/modules/log"
@@ -119,7 +120,7 @@ func (r *indexerNotifier) NotifyMigrateRepository(doer *models.User, u *models.U
}

func (r *indexerNotifier) NotifyPushCommits(pusher *models.User, repo *models.Repository, refName, oldCommitID, newCommitID string, commits *repository.PushCommits) {
if setting.Indexer.RepoIndexerEnabled && refName == repo.DefaultBranch {
if setting.Indexer.RepoIndexerEnabled && refName == git.BranchPrefix+repo.DefaultBranch {
code_indexer.UpdateRepoIndexer(repo)
}
}


Loading…
Cancel
Save