diff options
author | Valery Sizov <vsv2711@gmail.com> | 2015-06-24 13:44:08 +0300 |
---|---|---|
committer | Valery Sizov <vsv2711@gmail.com> | 2015-06-25 10:01:38 +0300 |
commit | ca55a358e155bc449c70efd703546f641abf8ca2 (patch) | |
tree | 879557bcb197728114b5fdf8d282045a6b465672 | |
parent | 02c1b6137b2e23776c48e3c77295f629c6229445 (diff) | |
download | gitlab-ci-ca55a358e155bc449c70efd703546f641abf8ca2.tar.gz |
update webhook example
-rw-r--r-- | CHANGELOG | 1 | ||||
-rw-r--r-- | app/views/web_hooks/index.html.haml | 4 |
2 files changed, 4 insertions, 1 deletions
@@ -1,6 +1,7 @@ v7.13.0 - Fix: No runner notification can see managers only - Fix: lint with relative subpath + - Update web hook example v7.12.1 - Runner without tag should pick builds without tag only diff --git a/app/views/web_hooks/index.html.haml b/app/views/web_hooks/index.html.haml index 731afbd..0c7db4b 100644 --- a/app/views/web_hooks/index.html.haml +++ b/app/views/web_hooks/index.html.haml @@ -39,6 +39,7 @@ <code> { "build_id": 2, + "build_name":"rspec_linux" "build_status": "failed", "build_started_at": "2014-05-05T18:01:02.563Z", "build_finished_at": "2014-05-05T18:01:07.611Z", @@ -83,7 +84,8 @@ } } ], - "total_commits_count": 2 + "total_commits_count": 2, + "ci_yaml_file":"rspec_linux:\r\n script: ls\r\n" } } </code> |