Using base64 encoded data in the header, webhook does not work.
Because the following code:
for _, value := range p.Config.Headers {
header := strings.Split(value, "=")
req.Header.Set(header[0], header[1])
}
Maybe it could be changed to strings.SplitN(value, "=", 2)