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:
authorJacopo <beschi.jacopo@gmail.com>2018-06-01 16:52:24 +0300
committerJacopo <beschi.jacopo@gmail.com>2018-06-01 18:02:02 +0300
commit3871ea33ca524ef2d420a4ff311d8535622bd150 (patch)
tree199fa276cdc004a5df1ef2bea28ff637c99c5f62 /doc/api/pipelines.md
parent6ae16b6d4d9fb79b715875073bb78efd3f56929b (diff)
Review 1
Diffstat (limited to 'doc/api/pipelines.md')
-rw-r--r--doc/api/pipelines.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/pipelines.md b/doc/api/pipelines.md
index 0e752056642..ae6c6ea7b49 100644
--- a/doc/api/pipelines.md
+++ b/doc/api/pipelines.md
@@ -102,7 +102,7 @@ POST /projects/:id/pipeline
|------------|---------|----------|---------------------|
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) owned by the authenticated user |
| `ref` | string | yes | Reference to commit |
-| `variables` | array | no | An array containing the variables available in the pipeline matching the structure [{ 'key' => 'UPLOAD_TO_S3', 'value' => 'true' }] |
+| `variables` | array | no | An array containing the variables available in the pipeline, matching the structure [{ 'key' => 'UPLOAD_TO_S3', 'value' => 'true' }] |
```
curl --request POST --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" "https://gitlab.example.com/api/v4/projects/1/pipeline?ref=master"