[GITEA] Allow release creation on commit (squash) s/SHAFullLength/FullLength/
(cherry picked from commit9d549c0d33
) (cherry picked from commit8b2af5f040
) (cherry picked from commit2262654cd7
) (cherry picked from commit5e98785109
)
This commit is contained in:
parent
f863f4b005
commit
16e337153b
1 changed files with 6 additions and 1 deletions
|
@ -397,9 +397,14 @@ func NewReleasePost(ctx *context.Context) {
|
|||
return
|
||||
}
|
||||
|
||||
objectFormat, err := ctx.Repo.GitRepo.GetObjectFormat()
|
||||
if err != nil {
|
||||
ctx.ServerError("GetCommit", err)
|
||||
return
|
||||
}
|
||||
// form.Target can be a branch name or a full commitID.
|
||||
if !ctx.Repo.GitRepo.IsBranchExist(form.Target) &&
|
||||
len(form.Target) == git.SHAFullLength && !ctx.Repo.GitRepo.IsCommitExist(form.Target) {
|
||||
len(form.Target) == objectFormat.FullLength() && !ctx.Repo.GitRepo.IsCommitExist(form.Target) {
|
||||
ctx.RenderWithErr(ctx.Tr("form.target_branch_not_exist"), tplReleaseNew, &form)
|
||||
return
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue