1
1
mirror of https://github.com/go-gitea/gitea synced 2024-06-22 19:25:47 +00:00

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.
This commit is contained in:
Yarden Shoham 2023-05-14 15:00:35 +03:00 committed by GitHub
parent 22da9da0e8
commit 116f8e12a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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