Optimize actions list by removing an unnecessary `git` call (#24710)

We already have the default branch so we don't need to make a `git` call
to get it.
pull/24705/head
Yarden Shoham 2 years ago committed by GitHub
parent 22da9da0e8
commit 116f8e12a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      routers/web/repo/actions/actions.go

@ -61,12 +61,7 @@ func List(ctx *context.Context) {
ctx.Error(http.StatusInternalServerError, err.Error())
return
} else if !empty {
defaultBranch, err := ctx.Repo.GitRepo.GetDefaultBranch()
if err != nil {
ctx.Error(http.StatusInternalServerError, err.Error())
return
}
commit, err := ctx.Repo.GitRepo.GetBranchCommit(defaultBranch)
commit, err := ctx.Repo.GitRepo.GetBranchCommit(ctx.Repo.Repository.DefaultBranch)
if err != nil {
ctx.Error(http.StatusInternalServerError, err.Error())
return

Loading…
Cancel
Save