Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2015-10-26 09:26:03 +0300
committerStan Hu <stanhu@gmail.com>2015-11-04 07:41:19 +0300
commit91cbf9db0c5c95381e7d422fd684e623d58fadab (patch)
treeebaf2814096b3b652fe0082c360ffeaecb06ebd3 /doc/api/commits.md
parent482a17089fae42bd15303206788734ab9ac99453 (diff)
Add allow_failure field to commit status API
Closes #3196
Diffstat (limited to 'doc/api/commits.md')
-rw-r--r--doc/api/commits.md6
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
}
]
```