Skip to content
Snippets Groups Projects

Add support to configure webhook_timeout in gitlab.yaml

Closed gitlab-qa-bot requested to merge github/fork/wesgurn/master into master
2 files
+ 15
20
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 14
19
@@ -19,14 +19,13 @@ Parameters:
"source_branch":"test1",
"project_id":3,
"title":"test1",
"closed":true,
"merged":false,
"state":"opened",
"author":{
"id":1,
"username": "admin",
"email":"admin@local.host",
"name":"Administrator",
"blocked":false,
"state":"active",
"created_at":"2012-04-29T08:46:00Z"
},
"assignee":{
@@ -34,7 +33,7 @@ Parameters:
"username": "admin",
"email":"admin@local.host",
"name":"Administrator",
"blocked":false,
"state":"active",
"created_at":"2012-04-29T08:46:00Z"
}
}
@@ -62,14 +61,13 @@ Parameters:
"source_branch":"test1",
"project_id":3,
"title":"test1",
"closed":true,
"merged":false,
"state":"merged",
"author":{
"id":1,
"username": "admin",
"email":"admin@local.host",
"name":"Administrator",
"blocked":false,
"state":"active",
"created_at":"2012-04-29T08:46:00Z"
},
"assignee":{
@@ -77,7 +75,7 @@ Parameters:
"username": "admin",
"email":"admin@local.host",
"name":"Administrator",
"blocked":false,
"state":"active",
"created_at":"2012-04-29T08:46:00Z"
}
}
@@ -97,7 +95,7 @@ Parameters:
+ `id` (required) - The ID of a project
+ `source_branch` (required) - The source branch
+ `target_branch` (required) - The target branch
+ `assignee_id` - Assignee user ID
+ `assignee_id` (optional) - Assignee user ID
+ `title` (required) - Title of MR
```json
@@ -107,14 +105,13 @@ Parameters:
"source_branch":"test1",
"project_id":3,
"title":"test1",
"closed":true,
"merged":false,
"state":"opened",
"author":{
"id":1,
"username": "admin",
"email":"admin@local.host",
"name":"Administrator",
"blocked":false,
"state":"active",
"created_at":"2012-04-29T08:46:00Z"
},
"assignee":{
@@ -122,7 +119,7 @@ Parameters:
"username": "admin",
"email":"admin@local.host",
"name":"Administrator",
"blocked":false,
"state":"active",
"created_at":"2012-04-29T08:46:00Z"
}
}
@@ -145,24 +142,22 @@ Parameters:
+ `target_branch` - The target branch
+ `assignee_id` - Assignee user ID
+ `title` - Title of MR
+ `closed` - Status of MR. true - closed
```json
{
"id":1,
"target_branch":"master",
"source_branch":"test1",
"project_id":3,
"title":"test1",
"closed":true,
"merged":false,
"state":"opened",
"author":{
"id":1,
"username": "admin",
"email":"admin@local.host",
"name":"Administrator",
"blocked":false,
"state":"active",
"created_at":"2012-04-29T08:46:00Z"
},
"assignee":{
@@ -170,7 +165,7 @@ Parameters:
"username": "admin",
"email":"admin@local.host",
"name":"Administrator",
"blocked":false,
"state":"active",
"created_at":"2012-04-29T08:46:00Z"
}
}
Loading