diff options
author | Steve Azzopardi <steveazz@outlook.com> | 2019-03-08 10:29:46 +0100 |
---|---|---|
committer | Steve Azzopardi <steveazz@outlook.com> | 2019-03-08 11:57:35 +0100 |
commit | 7028c40e36493d8fa5be59695114470a072eff22 (patch) | |
tree | 54034fb1c72f07cf1c481b5440f9e494c0da1c73 /doc/user/project/integrations/webhooks.md | |
parent | b4852ab49a385f3cc900cf0f2584097b8a154ac0 (diff) | |
download | gitlab-ce-7028c40e36493d8fa5be59695114470a072eff22.tar.gz |
Update pipeline webhook example response
In the example response we have builds with status `success` but the
property `runner` is null, which is not a realistic representation of
the response. The runner is always sent if the build has ran.
closes https://gitlab.com/gitlab-org/gitlab-ce/issues/53121
Diffstat (limited to 'doc/user/project/integrations/webhooks.md')
-rw-r--r-- | doc/user/project/integrations/webhooks.md | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/doc/user/project/integrations/webhooks.md b/doc/user/project/integrations/webhooks.md index c3fc6d4b859..d324e0de0cc 100644 --- a/doc/user/project/integrations/webhooks.md +++ b/doc/user/project/integrations/webhooks.md @@ -1041,7 +1041,12 @@ X-Gitlab-Event: Pipeline Hook "username": "root", "avatar_url": "http://www.gravatar.com/avatar/e32bd13e2add097461cb96824b7a829c?s=80\u0026d=identicon" }, - "runner": null, + "runner": { + "id":380987, + "description":"shared-runners-manager-6.gitlab.com", + "active":true, + "is_shared":true + }, "artifacts_file":{ "filename": null, "size": null @@ -1062,7 +1067,12 @@ X-Gitlab-Event: Pipeline Hook "username": "root", "avatar_url": "http://www.gravatar.com/avatar/e32bd13e2add097461cb96824b7a829c?s=80\u0026d=identicon" }, - "runner": null, + "runner": { + "id":380987, + "description":"shared-runners-manager-6.gitlab.com", + "active":true, + "is_shared":true + }, "artifacts_file":{ "filename": null, "size": null @@ -1083,7 +1093,12 @@ X-Gitlab-Event: Pipeline Hook "username": "root", "avatar_url": "http://www.gravatar.com/avatar/e32bd13e2add097461cb96824b7a829c?s=80\u0026d=identicon" }, - "runner": null, + "runner": { + "id":380987, + "description":"shared-runners-manager-6.gitlab.com", + "active":true, + "is_shared":true + }, "artifacts_file":{ "filename": null, "size": null |