File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ func parsePushHook(data []byte) (scm.Webhook, error) {
86
86
// returns more metadata (commit details).
87
87
return convertPushHook (src ), nil
88
88
case src .ObjectKind == "push" && src .After == "0000000000000000000000000000000000000000" :
89
- return converBranchHook (src ), nil
89
+ return convertBranchHook (src ), nil
90
90
case src .ObjectKind == "tag_push" && src .Before == "0000000000000000000000000000000000000000" :
91
91
// TODO we previously considered returning a
92
92
// tag creation hook, however, the push hook
@@ -188,7 +188,7 @@ func convertPushHook(src *pushHook) *scm.PushHook {
188
188
return dst
189
189
}
190
190
191
- func converBranchHook (src * pushHook ) * scm.BranchHook {
191
+ func convertBranchHook (src * pushHook ) * scm.BranchHook {
192
192
action := scm .ActionCreate
193
193
commit := src .After
194
194
if src .After == "0000000000000000000000000000000000000000" {
You can’t perform that action at this time.
0 commit comments