diff options
author | Filipa Lacerda <filipa@gitlab.com> | 2017-05-03 18:33:03 +0100 |
---|---|---|
committer | Filipa Lacerda <filipa@gitlab.com> | 2017-05-03 18:33:03 +0100 |
commit | 2b075561f9213530d1911bea875c5ed9ac42b1a6 (patch) | |
tree | 2d72260c7c5947dea390a97f4f444b191a6079c1 /doc/api | |
parent | a5989900c9c001eaee971969b89a708f132c6d7c (diff) | |
parent | e14ca5394edf0497184415f12629dfdbe72a2727 (diff) | |
download | gitlab-ce-31156-environments-vue-service.tar.gz |
Merge branch 'master' into 31156-environments-vue-service31156-environments-vue-service
* master: (91 commits)
Move api lint out of static analysis job
Fix project tree saver and fork spec failures
Fix lazy error handling of cron parser
Use gitlab-workhorse 2.0.0
Revert to real click seeing as that was a bug with only the original branch
Fixed issue_sidebar_spec.rb click as true click cannot hit the right element and removed sleep
find and match first dropdown before clicking
Elaborate on the usage of Spring
Note Ghost user and refer to user deletion documentation
Fix label creation from issuable for subgroup projects
Detect already enabled DeployKeys in EnableDeployKeyService
Extract common parts of snippet and blob pages into partial
update article date
link ldap-ee article from auth index
add ldap article and changes from !10299
Fix misaligned buttons in wiki pages
Improve pipelines_finder.rb
Improve documentation
Correct typo in pipelines_spec.rb
Avoid using sample
...
Diffstat (limited to 'doc/api')
-rw-r--r-- | doc/api/pipelines.md | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/api/pipelines.md b/doc/api/pipelines.md index 732ad8da4ac..890945cfc7e 100644 --- a/doc/api/pipelines.md +++ b/doc/api/pipelines.md @@ -11,6 +11,14 @@ GET /projects/:id/pipelines | Attribute | Type | Required | Description | |-----------|---------|----------|---------------------| | `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) owned by the authenticated user | +| `scope` | string | no | The scope of pipelines, one of: `running`, `pending`, `finished`, `branches`, `tags` | +| `status` | string | no | The status of pipelines, one of: `running`, `pending`, `success`, `failed`, `canceled`, `skipped` | +| `ref` | string | no | The ref of pipelines | +| `yaml_errors`| boolean | no | Returns pipelines with invalid configurations | +| `name`| string | no | The name of the user who triggered pipelines | +| `username`| string | no | The username of the user who triggered pipelines | +| `order_by`| string | no | Order pipelines by `id`, `status`, `ref`, or `user_id` (default: `id`) | +| `sort` | string | no | Sort pipelines in `asc` or `desc` order (default: `desc`) | ``` curl --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" "https://gitlab.example.com/api/v4/projects/1/pipelines" |