Skip to content

Commit 4b0814b

Browse files
author
Johnny M
committed
Change spelling from converBranch=>convertBranch
Fixed func namespace of `convertBranch` webhook in the gitlab driver. Updated parsePushHooks return statement to match
1 parent ca0f320 commit 4b0814b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scm/driver/gitlab/webhook.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ func parsePushHook(data []byte) (scm.Webhook, error) {
8686
// returns more metadata (commit details).
8787
return convertPushHook(src), nil
8888
case src.ObjectKind == "push" && src.After == "0000000000000000000000000000000000000000":
89-
return converBranchHook(src), nil
89+
return convertBranchHook(src), nil
9090
case src.ObjectKind == "tag_push" && src.Before == "0000000000000000000000000000000000000000":
9191
// TODO we previously considered returning a
9292
// tag creation hook, however, the push hook
@@ -188,7 +188,7 @@ func convertPushHook(src *pushHook) *scm.PushHook {
188188
return dst
189189
}
190190

191-
func converBranchHook(src *pushHook) *scm.BranchHook {
191+
func convertBranchHook(src *pushHook) *scm.BranchHook {
192192
action := scm.ActionCreate
193193
commit := src.After
194194
if src.After == "0000000000000000000000000000000000000000" {

0 commit comments

Comments
 (0)