chore(docs): add field repository_update_events
- adds the field repository_update_events as json field
This commit is contained in:
parent
125809ce03
commit
6a3437ff4d
1 changed files with 4 additions and 1 deletions
|
@ -34,6 +34,7 @@ Example response:
|
||||||
"push_events":true,
|
"push_events":true,
|
||||||
"tag_push_events":false,
|
"tag_push_events":false,
|
||||||
"merge_requests_events": true,
|
"merge_requests_events": true,
|
||||||
|
"repository_update_events": true,
|
||||||
"enable_ssl_verification":true
|
"enable_ssl_verification":true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -56,6 +57,7 @@ POST /hooks
|
||||||
| `push_events` | boolean | no | When true, the hook will fire on push events |
|
| `push_events` | boolean | no | When true, the hook will fire on push events |
|
||||||
| `tag_push_events` | boolean | no | When true, the hook will fire on new tags being pushed |
|
| `tag_push_events` | boolean | no | When true, the hook will fire on new tags being pushed |
|
||||||
| `merge_requests_events` | boolean | no | Trigger hook on merge requests events |
|
| `merge_requests_events` | boolean | no | Trigger hook on merge requests events |
|
||||||
|
| `repository_update_events` | boolean | no | Trigger hook on repository update events |
|
||||||
| `enable_ssl_verification` | boolean | no | Do SSL verification when triggering the hook |
|
| `enable_ssl_verification` | boolean | no | Do SSL verification when triggering the hook |
|
||||||
|
|
||||||
Example request:
|
Example request:
|
||||||
|
@ -75,6 +77,7 @@ Example response:
|
||||||
"push_events":true,
|
"push_events":true,
|
||||||
"tag_push_events":false,
|
"tag_push_events":false,
|
||||||
"merge_requests_events": true,
|
"merge_requests_events": true,
|
||||||
|
"repository_update_events": true,
|
||||||
"enable_ssl_verification":true
|
"enable_ssl_verification":true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -127,4 +130,4 @@ Example request:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
curl --request DELETE --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v4/hooks/2
|
curl --request DELETE --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v4/hooks/2
|
||||||
```
|
```
|
Loading…
Reference in a new issue