Ignore trivial errors when updating push data (#33864)
Fix #23213 (cherry picked from commit cb6b33c9cd1efa619351a458e2bce8ad1e6cd623)
This commit is contained in:
parent
f8dfb5905f
commit
0dfa5d0c7d
2 changed files with 20 additions and 18 deletions
|
@ -1381,10 +1381,8 @@ func GetWhitespaceFlag(whitespaceBehavior string) git.TrustedCmdArgs {
|
||||||
"ignore-eol": {"--ignore-space-at-eol"},
|
"ignore-eol": {"--ignore-space-at-eol"},
|
||||||
"show-all": nil,
|
"show-all": nil,
|
||||||
}
|
}
|
||||||
|
|
||||||
if flag, ok := whitespaceFlags[whitespaceBehavior]; ok {
|
if flag, ok := whitespaceFlags[whitespaceBehavior]; ok {
|
||||||
return flag
|
return flag
|
||||||
}
|
}
|
||||||
log.Warn("unknown whitespace behavior: %q, default to 'show-all'", whitespaceBehavior)
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,6 +23,7 @@ import (
|
||||||
repo_module "code.gitea.io/gitea/modules/repository"
|
repo_module "code.gitea.io/gitea/modules/repository"
|
||||||
"code.gitea.io/gitea/modules/setting"
|
"code.gitea.io/gitea/modules/setting"
|
||||||
"code.gitea.io/gitea/modules/timeutil"
|
"code.gitea.io/gitea/modules/timeutil"
|
||||||
|
"code.gitea.io/gitea/modules/util"
|
||||||
issue_service "code.gitea.io/gitea/services/issue"
|
issue_service "code.gitea.io/gitea/services/issue"
|
||||||
notify_service "code.gitea.io/gitea/services/notify"
|
notify_service "code.gitea.io/gitea/services/notify"
|
||||||
pull_service "code.gitea.io/gitea/services/pull"
|
pull_service "code.gitea.io/gitea/services/pull"
|
||||||
|
@ -133,9 +134,11 @@ func pushUpdates(optsList []*repo_module.PushUpdateOptions) error {
|
||||||
} else { // is new tag
|
} else { // is new tag
|
||||||
newCommit, err := gitRepo.GetCommit(opts.NewCommitID)
|
newCommit, err := gitRepo.GetCommit(opts.NewCommitID)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("gitRepo.GetCommit(%s) in %s/%s[%d]: %w", opts.NewCommitID, repo.OwnerName, repo.Name, repo.ID, err)
|
// in case there is dirty data, for example, the "github.com/git/git" repository has tags pointing to non-existing commits
|
||||||
|
if !errors.Is(err, util.ErrNotExist) {
|
||||||
|
log.Error("Unable to get tag commit: gitRepo.GetCommit(%s) in %s/%s[%d]: %v", opts.NewCommitID, repo.OwnerName, repo.Name, repo.ID, err)
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
commits := repo_module.NewPushCommits()
|
commits := repo_module.NewPushCommits()
|
||||||
commits.HeadCommit = repo_module.CommitToPushCommit(newCommit)
|
commits.HeadCommit = repo_module.CommitToPushCommit(newCommit)
|
||||||
commits.CompareURL = repo.ComposeCompareURL(objectFormat.EmptyObjectID().String(), opts.NewCommitID)
|
commits.CompareURL = repo.ComposeCompareURL(objectFormat.EmptyObjectID().String(), opts.NewCommitID)
|
||||||
|
@ -151,6 +154,7 @@ func pushUpdates(optsList []*repo_module.PushUpdateOptions) error {
|
||||||
addTags = append(addTags, tagName)
|
addTags = append(addTags, tagName)
|
||||||
notify_service.CreateRef(ctx, pusher, repo, opts.RefFullName, opts.NewCommitID)
|
notify_service.CreateRef(ctx, pusher, repo, opts.RefFullName, opts.NewCommitID)
|
||||||
}
|
}
|
||||||
|
}
|
||||||
} else if opts.RefFullName.IsBranch() {
|
} else if opts.RefFullName.IsBranch() {
|
||||||
if pusher == nil || pusher.ID != opts.PusherID {
|
if pusher == nil || pusher.ID != opts.PusherID {
|
||||||
if opts.PusherID == user_model.ActionsUserID {
|
if opts.PusherID == user_model.ActionsUserID {
|
||||||
|
|
Loading…
Add table
Reference in a new issue