Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchilleas Pipinellis <axil@gitlab.com>2018-10-08 14:41:35 +0300
committerAchilleas Pipinellis <axil@gitlab.com>2018-10-08 14:41:35 +0300
commit0c8bbd07905b27fdaa013e3f95bbddfba18943d6 (patch)
tree46a4dfb18e743be4aee24d4227dc6e26c7377081 /doc/administration/custom_hooks.md
parent54579baf533d9102ddc3c1047e7420d7fbc8d7db (diff)
Move hook name note to the top
Diffstat (limited to 'doc/administration/custom_hooks.md')
-rw-r--r--doc/administration/custom_hooks.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/administration/custom_hooks.md b/doc/administration/custom_hooks.md
index d64c2968616..c58ced7d520 100644
--- a/doc/administration/custom_hooks.md
+++ b/doc/administration/custom_hooks.md
@@ -50,6 +50,9 @@ Hooks can be also placed in `hooks/<hook_name>.d` (global) or
`custom_hooks/<hook_name>.d` (per project) directories supporting chained
execution of the hooks.
+NOTE: **Note:** `<hook_name>.d` would need to be either `pre-receive.d`,
+`post-receive.d`, or `update.d` to work properly. Any other names will be ignored.
+
To look in a different directory for the global custom hooks (those in
`hooks/<hook_name.d>`), set `custom_hooks_dir` in gitlab-shell config. For
Omnibus installations, this can be set in `gitlab.rb`; and in source
@@ -69,8 +72,6 @@ pattern (`*~`).
The hooks of the same type are executed in order and execution stops on the
first script exiting with a non-zero value.
-> **Note:** In the above examples, `<hook_name>.d` would need to be either `pre-receive.d`, `post-receive.d`, or `update.d` to work properly. Any other names would be ignored.
-
## Custom error messages
> [Introduced][5073] in GitLab 8.10.