diff options
author | Valeriy Sizov <vsv2711@gmail.com> | 2015-05-08 17:17:01 +0300 |
---|---|---|
committer | Valeriy Sizov <vsv2711@gmail.com> | 2015-05-08 17:17:01 +0300 |
commit | f682a6adb961a54d340762a40596e058608a2e05 (patch) | |
tree | a9e208180a9dc388514e4531657d8131919935dd /doc | |
parent | a1399c3c30798a6a14771b3d562f3d467f96c91e (diff) | |
parent | acac7889023de96af61d293d855c33996bd780a1 (diff) | |
download | gitlab-ce-f682a6adb961a54d340762a40596e058608a2e05.tar.gz |
Merge pull request #9214 from Bugagazavr/hook-events
Added X-GitLab-Event header for web hooks
Diffstat (limited to 'doc')
-rw-r--r-- | doc/system_hooks/system_hooks.md | 6 | ||||
-rw-r--r-- | doc/web_hooks/web_hooks.md | 25 |
2 files changed, 31 insertions, 0 deletions
diff --git a/doc/system_hooks/system_hooks.md b/doc/system_hooks/system_hooks.md index f9b6d37d840..b0e4613cdef 100644 --- a/doc/system_hooks/system_hooks.md +++ b/doc/system_hooks/system_hooks.md @@ -6,6 +6,12 @@ System hooks can be used, e.g. for logging or changing information in a LDAP ser ## Hooks request example +**Request header**: + +``` +X-Gitlab-Event: System Hook +``` + **Project created:** ```json diff --git a/doc/web_hooks/web_hooks.md b/doc/web_hooks/web_hooks.md index 851f50f5e9a..01082555192 100644 --- a/doc/web_hooks/web_hooks.md +++ b/doc/web_hooks/web_hooks.md @@ -12,6 +12,12 @@ If you send a web hook to an SSL endpoint [the certificate will not be verified] Triggered when you push to the repository except when pushing tags. +**Request header**: + +``` +X-Gitlab-Event: Push Hook +``` + **Request body:** ```json @@ -63,6 +69,13 @@ Triggered when you push to the repository except when pushing tags. Triggered when you create (or delete) tags to the repository. +**Request header**: + +``` +X-Gitlab-Event: Tag Push Hook +``` + + **Request body:** ```json @@ -92,6 +105,12 @@ Triggered when you create (or delete) tags to the repository. Triggered when a new issue is created or an existing issue was updated/closed/reopened. +**Request header**: + +``` +X-Gitlab-Event: Issue Hook +``` + **Request body:** ```json @@ -126,6 +145,12 @@ Triggered when a new issue is created or an existing issue was updated/closed/re Triggered when a new merge request is created or an existing merge request was updated/merged/closed. +**Request header**: + +``` +X-Gitlab-Event: Merge Request Hook +``` + **Request body:** ```json |