diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-10-21 07:08:36 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-10-21 07:08:36 +0000 |
commit | 48aff82709769b098321c738f3444b9bdaa694c6 (patch) | |
tree | e00c7c43e2d9b603a5a6af576b1685e400410dee /doc/system_hooks | |
parent | 879f5329ee916a948223f8f43d77fba4da6cd028 (diff) | |
download | gitlab-ce-48aff82709769b098321c738f3444b9bdaa694c6.tar.gz |
Add latest changes from gitlab-org/gitlab@13-5-stable-eev13.5.0-rc42
Diffstat (limited to 'doc/system_hooks')
-rw-r--r-- | doc/system_hooks/system_hooks.md | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/doc/system_hooks/system_hooks.md b/doc/system_hooks/system_hooks.md index feea038b7d2..d2bdf935aa1 100644 --- a/doc/system_hooks/system_hooks.md +++ b/doc/system_hooks/system_hooks.md @@ -6,26 +6,27 @@ type: reference Your GitLab instance can perform HTTP POST requests on the following events: +- `group_create` +- `group_destroy` +- `group_rename` +- `key_create` +- `key_destroy` - `project_create` - `project_destroy` - `project_rename` - `project_transfer` - `project_update` +- `repository_update` +- `user_add_to_group` - `user_add_to_team` -- `user_remove_from_team` -- `user_update_for_team` - `user_create` - `user_destroy` - `user_failed_login` -- `user_rename` -- `key_create` -- `key_destroy` -- `group_create` -- `group_destroy` -- `group_rename` -- `user_add_to_group` - `user_remove_from_group` +- `user_remove_from_team` +- `user_rename` - `user_update_for_group` +- `user_update_for_team` The triggers for most of these are self-explanatory, but `project_update` and `project_rename` deserve some clarification: `project_update` is fired any time an attribute of a project is changed (name, description, tags, etc.) *unless* the `path` attribute is also changed. In that case, a `project_rename` is triggered instead (so that, for instance, if all you care about is the repository URL, you can just listen for `project_rename`). |