Add X-GitHub-* headers for webhook to get clubhouse.io integration working (#809)

This commit is contained in:
Anton Skorokhod 2017-02-02 04:51:19 +01:00 committed by Lunny Xiao
parent 081485ecfd
commit 79ab69fe30
1 changed files with 2 additions and 0 deletions

View File

@ -538,6 +538,8 @@ func (t *HookTask) deliver() {
req := httplib.Post(t.URL).SetTimeout(timeout, timeout).
Header("X-Gogs-Delivery", t.UUID).
Header("X-Gogs-Event", string(t.EventType)).
Header("X-GitHub-Delivery", t.UUID).
Header("X-GitHub-Event", string(t.EventType)).
SetTLSClientConfig(&tls.Config{InsecureSkipVerify: setting.Webhook.SkipTLSVerify})
switch t.ContentType {