diff --git a/webhooks.go b/webhooks.go index a8c8db9..473ffea 100644 --- a/webhooks.go +++ b/webhooks.go @@ -112,14 +112,24 @@ func handleWebHook(writer http.ResponseWriter, request *http.Request) { default: fmt.Printf("Unknown event type: %q\n", eventType) + handleUnknown(data) return } } +func printSep() { + fmt.Println("---") +} + +func handleUnknown(data []byte) { + printSep() + fmt.Println(string(data)) +} + func handlePush(data []byte) { + printSep() pushData := Push{} json.Unmarshal(data, &pushData) - fmt.Println("---") fmt.Printf( "Got a push for repo %q owned by %q. Pushed by %q (%q)\n", pushData.Repository.FullName,