We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91d2844 commit 85dd6eeCopy full SHA for 85dd6ee
routers/private/hook_proc_receive.go
@@ -23,7 +23,7 @@ func HookProcReceive(ctx *gitea_context.PrivateContext) {
23
return
24
}
25
26
- results := agit.ProcRecive(ctx, opts)
+ results := agit.ProcReceive(ctx, opts)
27
if ctx.Written() {
28
29
services/agit/agit.go
@@ -20,8 +20,8 @@ import (
20
pull_service "code.gitea.io/gitea/services/pull"
21
)
22
-// ProcRecive handle proc receive work
-func ProcRecive(ctx *context.PrivateContext, opts *private.HookOptions) []private.HookProcReceiveRefResult {
+// ProcReceive handle proc receive work
+func ProcReceive(ctx *context.PrivateContext, opts *private.HookOptions) []private.HookProcReceiveRefResult {
// TODO: Add more options?
var (
topicBranch string
0 commit comments