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

enqueue_build_service.rb « ci « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8140651d980cae60d18944dc71e289b0bfe9df48 (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true
module Ci
  class EnqueueBuildService < BaseService
    def execute(build)
      build.enqueue
    end
  end
end