We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55b3f31 commit 9da4b98Copy full SHA for 9da4b98
litepipe.go
@@ -66,7 +66,7 @@ func setDefaultsAndValidateConfig() {
66
func start() {
67
http.HandleFunc("/", HandleWebhook)
68
69
- fmt.Println("\n\033[30;46m LitePipe \033[0m version 0.1.4")
+ fmt.Println("\n\033[30;46m LitePipe \033[0m version 0.1.7")
70
fmt.Printf("PID: %d\n", os.Getpid())
71
fmt.Printf("Listening on port %d\n\n", config.Port)
72
@@ -97,6 +97,8 @@ func HandleWebhook(w http.ResponseWriter, r *http.Request) {
97
return
98
}
99
100
+ fmt.Println(body)
101
+
102
signature := r.Header.Get("X-Hub-Signature")
103
if !verifyWebhookSignature(signature, body) {
104
fmt.Println("Invalid Webhook")
0 commit comments