diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2021-08-14 19:17:10 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-14 13:17:10 +0200 |
commit | 74d75eb69ce0ecd61665ea2ad4a971aee0305c8e (patch) | |
tree | de37a344b3a065282c42727cbb1bb572a262787e /services/agit | |
parent | bbf9f41354a2ff48124231a18cdf0a26bc39235f (diff) | |
download | gitea-74d75eb69ce0ecd61665ea2ad4a971aee0305c8e.tar.gz gitea-74d75eb69ce0ecd61665ea2ad4a971aee0305c8e.zip |
Fix spelling of HookProcReceiveResult (#16690)
Diffstat (limited to 'services/agit')
-rw-r--r-- | services/agit/agit.go | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/services/agit/agit.go b/services/agit/agit.go index a89c255fe7..3fca844f91 100644 --- a/services/agit/agit.go +++ b/services/agit/agit.go @@ -20,7 +20,7 @@ import ( ) // ProcRecive handle proc receive work -func ProcRecive(ctx *context.PrivateContext, opts *private.HookOptions) []private.HockProcReceiveRefResult { +func ProcRecive(ctx *context.PrivateContext, opts *private.HookOptions) []private.HookProcReceiveRefResult { // TODO: Add more options? var ( topicBranch string @@ -29,7 +29,7 @@ func ProcRecive(ctx *context.PrivateContext, opts *private.HookOptions) []privat forcePush bool ) - results := make([]private.HockProcReceiveRefResult, 0, len(opts.OldCommitIDs)) + results := make([]private.HookProcReceiveRefResult, 0, len(opts.OldCommitIDs)) repo := ctx.Repo.Repository gitRepo := ctx.Repo.GitRepo ownerName := ctx.Repo.Repository.OwnerName @@ -40,7 +40,7 @@ func ProcRecive(ctx *context.PrivateContext, opts *private.HookOptions) []privat for i := range opts.OldCommitIDs { if opts.NewCommitIDs[i] == git.EmptySHA { - results = append(results, private.HockProcReceiveRefResult{ + results = append(results, private.HookProcReceiveRefResult{ OriginalRef: opts.RefFullNames[i], OldOID: opts.OldCommitIDs[i], NewOID: opts.NewCommitIDs[i], @@ -50,7 +50,7 @@ func ProcRecive(ctx *context.PrivateContext, opts *private.HookOptions) []privat } if !strings.HasPrefix(opts.RefFullNames[i], git.PullRequestPrefix) { - results = append(results, private.HockProcReceiveRefResult{ + results = append(results, private.HookProcReceiveRefResult{ IsNotMatched: true, OriginalRef: opts.RefFullNames[i], }) @@ -71,7 +71,7 @@ func ProcRecive(ctx *context.PrivateContext, opts *private.HookOptions) []privat } if len(topicBranch) == 0 && len(curentTopicBranch) == 0 { - results = append(results, private.HockProcReceiveRefResult{ + results = append(results, private.HookProcReceiveRefResult{ OriginalRef: opts.RefFullNames[i], OldOID: opts.OldCommitIDs[i], NewOID: opts.NewCommitIDs[i], @@ -166,7 +166,7 @@ func ProcRecive(ctx *context.PrivateContext, opts *private.HookOptions) []privat log.Trace("Pull request created: %d/%d", repo.ID, prIssue.ID) - results = append(results, private.HockProcReceiveRefResult{ + results = append(results, private.HookProcReceiveRefResult{ Ref: pr.GetGitRefName(), OriginalRef: opts.RefFullNames[i], OldOID: git.EmptySHA, @@ -194,7 +194,7 @@ func ProcRecive(ctx *context.PrivateContext, opts *private.HookOptions) []privat } if oldCommitID == opts.NewCommitIDs[i] { - results = append(results, private.HockProcReceiveRefResult{ + results = append(results, private.HookProcReceiveRefResult{ OriginalRef: opts.RefFullNames[i], OldOID: opts.OldCommitIDs[i], NewOID: opts.NewCommitIDs[i], @@ -212,7 +212,7 @@ func ProcRecive(ctx *context.PrivateContext, opts *private.HookOptions) []privat }) return nil } else if len(output) > 0 { - results = append(results, private.HockProcReceiveRefResult{ + results = append(results, private.HookProcReceiveRefResult{ OriginalRef: oldCommitID, OldOID: opts.OldCommitIDs[i], NewOID: opts.NewCommitIDs[i], @@ -255,7 +255,7 @@ func ProcRecive(ctx *context.PrivateContext, opts *private.HookOptions) []privat notification.NotifyPullRequestSynchronized(pusher, pr) isForcePush := comment != nil && comment.IsForcePush - results = append(results, private.HockProcReceiveRefResult{ + results = append(results, private.HookProcReceiveRefResult{ OldOID: oldCommitID, NewOID: opts.NewCommitIDs[i], Ref: pr.GetGitRefName(), |