diff options
author | Stan Hu <stanhu@gmail.com> | 2015-10-26 07:26:03 +0100 |
---|---|---|
committer | Stan Hu <stanhu@gmail.com> | 2015-11-03 20:41:19 -0800 |
commit | 91cbf9db0c5c95381e7d422fd684e623d58fadab (patch) | |
tree | ebaf2814096b3b652fe0082c360ffeaecb06ebd3 /doc/api/commits.md | |
parent | 482a17089fae42bd15303206788734ab9ac99453 (diff) | |
download | gitlab-ce-91cbf9db0c5c95381e7d422fd684e623d58fadab.tar.gz |
Add allow_failure field to commit status API
Closes #3196
Diffstat (limited to 'doc/api/commits.md')
-rw-r--r-- | doc/api/commits.md | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/api/commits.md b/doc/api/commits.md index 9f72adc6ed9..8e4a0ee1b82 100644 --- a/doc/api/commits.md +++ b/doc/api/commits.md @@ -22,7 +22,8 @@ Parameters: "author_name": "Dmitriy Zaporozhets", "author_email": "dzaporozhets@sphereconsultinginc.com", "created_at": "2012-09-20T11:50:22+03:00", - "message": "Replace sanitize with escape once" + "message": "Replace sanitize with escape once", + "allow_failure": false }, { "id": "6104942438c14ec7bd21c6cd5bd995272b3faff6", @@ -31,7 +32,8 @@ Parameters: "author_name": "randx", "author_email": "dmitriy.zaporozhets@gmail.com", "created_at": "2012-09-20T09:06:12+03:00", - "message": "Sanitize for network graph" + "message": "Sanitize for network graph", + "allow_failure": false } ] ``` |