debian-mirror-gitlab/lib/gitlab/ci/pipeline/chain/pipeline/process.rb
2021-04-29 21:17:54 +05:30

22 lines
474 B
Ruby

# frozen_string_literal: true
module Gitlab
module Ci
module Pipeline
module Chain
module Pipeline
# After pipeline has been successfully created we can start processing it.
class Process < Chain::Base
def perform!
::Ci::InitialPipelineProcessWorker.perform_async(pipeline.id)
end
def break?
false
end
end
end
end
end
end
end