Commit e4c8e8fd76fbfdfef4431df555a6a101256e2661
Exists in
spb-stable
and in
2 other branches
Merge branch 'master' of https://gitlab.com/gitlab-org/gitlab-ce
Showing
1 changed file
with
5 additions
and
5 deletions
Show diff stats
doc/web_hooks/web_hooks.md
@@ -2,16 +2,16 @@ Project web hooks allow you to trigger an URL if new code is pushed or a new iss | @@ -2,16 +2,16 @@ Project web hooks allow you to trigger an URL if new code is pushed or a new iss | ||
2 | 2 | ||
3 | --- | 3 | --- |
4 | 4 | ||
5 | -You can configure web hook to listen for specific events like pushes, issues, merge requests. | ||
6 | -GitLab will send POST request with data to web hook URL. | ||
7 | -Web Hooks can be used to update an external issue tracker, trigger CI builds, update a backup mirror, or even deploy to your production server. | 5 | +You can configure web hooks to listen for specific events like pushes, issues or merge requests. |
6 | +GitLab will send a POST request with data to the web hook URL. | ||
7 | +Web hooks can be used to update an external issue tracker, trigger CI builds, update a backup mirror, or even deploy to your production server. | ||
8 | If you send a web hook to an SSL endpoint [the certificate will not be verified](https://gitlab.com/gitlab-org/gitlab-ce/blob/ccd617e58ea71c42b6b073e692447d0fe3c00be6/app/models/web_hook.rb#L35) since many people use self-signed certificates. | 8 | If you send a web hook to an SSL endpoint [the certificate will not be verified](https://gitlab.com/gitlab-org/gitlab-ce/blob/ccd617e58ea71c42b6b073e692447d0fe3c00be6/app/models/web_hook.rb#L35) since many people use self-signed certificates. |
9 | 9 | ||
10 | --- | 10 | --- |
11 | 11 | ||
12 | #### Push events | 12 | #### Push events |
13 | 13 | ||
14 | -Triggered when you push to the repository except pushing tags. | 14 | +Triggered when you push to the repository except when pushing tags. |
15 | 15 | ||
16 | **Request body:** | 16 | **Request body:** |
17 | 17 | ||
@@ -84,7 +84,7 @@ Triggered when a new issue is created or an existing issue was updated/closed/re | @@ -84,7 +84,7 @@ Triggered when a new issue is created or an existing issue was updated/closed/re | ||
84 | 84 | ||
85 | #### Merge request events | 85 | #### Merge request events |
86 | 86 | ||
87 | -Triggered when a new merge request is created or an existing merge request was updated/merges/closed. | 87 | +Triggered when a new merge request is created or an existing merge request was updated/merged/closed. |
88 | 88 | ||
89 | **Request body:** | 89 | **Request body:** |
90 | 90 |