2020-03-13 05:09:23 -04:00
|
|
|
# Merge request context commits API
|
2020-01-29 10:08:59 -05:00
|
|
|
|
|
|
|
## List MR context commits
|
|
|
|
|
|
|
|
Get a list of merge request context commits.
|
|
|
|
|
2020-02-27 04:09:01 -05:00
|
|
|
```plaintext
|
2020-01-29 10:08:59 -05:00
|
|
|
GET /projects/:id/merge_requests/:merge_request_iid/context_commits
|
|
|
|
```
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
|
|
|
- `id` (required) - The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) owned by the authenticated user
|
|
|
|
- `merge_request_iid` (required) - The internal ID of the merge request
|
|
|
|
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"id": "4a24d82dbca5c11c61556f3b35ca472b7463187e",
|
|
|
|
"short_id": "4a24d82d",
|
|
|
|
"created_at": "2017-04-11T10:08:59.000Z",
|
|
|
|
"parent_ids": null,
|
|
|
|
"title": "Update README.md to include `Usage in testing and development`",
|
|
|
|
"message": "Update README.md to include `Usage in testing and development`",
|
2020-03-03 22:08:50 -05:00
|
|
|
"author_name": "Example \"Sample\" User",
|
|
|
|
"author_email": "user@example.com",
|
2020-01-29 10:08:59 -05:00
|
|
|
"authored_date": "2017-04-11T10:08:59.000Z",
|
2020-03-03 22:08:50 -05:00
|
|
|
"committer_name": "Example \"Sample\" User",
|
|
|
|
"committer_email": "user@example.com",
|
2020-01-30 10:09:15 -05:00
|
|
|
"committed_date": "2017-04-11T10:08:59.000Z"
|
2020-01-29 10:08:59 -05:00
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
## Create MR context commits
|
|
|
|
|
|
|
|
Create a list of merge request context commits.
|
|
|
|
|
2020-02-27 04:09:01 -05:00
|
|
|
```plaintext
|
2020-01-29 10:08:59 -05:00
|
|
|
POST /projects/:id/merge_requests/:merge_request_iid/context_commits
|
|
|
|
```
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
|
|
|
- `id` (required) - The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) owned by the authenticated user
|
|
|
|
- `merge_request_iid` (required) - The internal ID of the merge request
|
|
|
|
|
2020-02-27 04:09:01 -05:00
|
|
|
```plaintext
|
2020-01-29 10:08:59 -05:00
|
|
|
POST /projects/:id/merge_requests/
|
|
|
|
```
|
|
|
|
|
|
|
|
| Attribute | Type | Required | Description |
|
|
|
|
| --------- | ---- | -------- | ----------- |
|
2020-03-25 23:07:43 -04:00
|
|
|
| `commits` | string array | yes | The context commits' SHA |
|
2020-01-29 10:08:59 -05:00
|
|
|
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"id": "6d394385cf567f80a8fd85055db1ab4c5295806f",
|
2020-03-03 22:08:50 -05:00
|
|
|
"message": "Added contributing guide\n\nSigned-off-by: Example User <user@example.com>\n",
|
2020-01-29 10:08:59 -05:00
|
|
|
"parent_ids": [
|
|
|
|
"1a0b36b3cdad1d2ee32457c102a8c0b7056fa863"
|
|
|
|
],
|
|
|
|
"authored_date": "2014-02-27T10:05:10.000+02:00",
|
2020-03-03 22:08:50 -05:00
|
|
|
"author_name": "Example User",
|
|
|
|
"author_email": "user@example.com",
|
2020-01-29 10:08:59 -05:00
|
|
|
"committed_date": "2014-02-27T10:05:10.000+02:00",
|
2020-03-03 22:08:50 -05:00
|
|
|
"committer_name": "Example User",
|
|
|
|
"committer_email": "user@example.com"
|
2020-01-29 10:08:59 -05:00
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
## Delete MR context commits
|
|
|
|
|
|
|
|
Delete a list of merge request context commits.
|
|
|
|
|
2020-02-27 04:09:01 -05:00
|
|
|
```plaintext
|
2020-01-29 10:08:59 -05:00
|
|
|
DELETE /projects/:id/merge_requests/:merge_request_iid/context_commits
|
|
|
|
```
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
|
|
|
- `id` (required) - The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) owned by the authenticated user
|
|
|
|
- `merge_request_iid` (required) - The internal ID of the merge request
|
|
|
|
|
|
|
|
| Attribute | Type | Required | Description |
|
|
|
|
| --------- | ---- | -------- | ----------- |
|
2020-03-25 23:07:43 -04:00
|
|
|
| `commits` | string array | yes | The context commits' SHA |
|