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:
authorDouwe Maan <douwe@gitlab.com>2015-02-20 16:49:36 +0300
committerDouwe Maan <douwe@gitlab.com>2015-03-03 13:14:32 +0300
commit19f04cf989a75f425af09a8551957dae42b1ff31 (patch)
tree96b415154c953bac16b3650b82b814dfdb24d2ea /app/services/git_tag_push_service.rb
parentd9ff616fd803c8bd9d208c22d01770acc8d58a38 (diff)
Execute services for tag push.
Diffstat (limited to 'app/services/git_tag_push_service.rb')
-rw-r--r--app/services/git_tag_push_service.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/services/git_tag_push_service.rb b/app/services/git_tag_push_service.rb
index 46d8987f12d..5fd8f642fad 100644
--- a/app/services/git_tag_push_service.rb
+++ b/app/services/git_tag_push_service.rb
@@ -8,6 +8,7 @@ class GitTagPushService
EventCreateService.new.push(project, user, @push_data)
project.repository.expire_cache
project.execute_hooks(@push_data.dup, :tag_push_hooks)
+ project.execute_services(@push_data.dup, :tag_push_hooks)
if project.gitlab_ci?
project.gitlab_ci_service.async_execute(@push_data)