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

test_hook_service.rb « ci « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3a17596aaebe9954eca7cb45a98ec213789efe7d (plain)
1
2
3
4
5
6
7
module Ci
  class TestHookService
    def execute(hook, current_user)
      Ci::WebHookService.new.build_end(hook.project.commits.last.last_build)
    end
  end
end