mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-20 14:11:11 +00:00
12 lines
213 B
Ruby
12 lines
213 B
Ruby
class PipelineHooksWorker
|
|
include ApplicationWorker
|
|
include PipelineQueue
|
|
|
|
enqueue_in group: :hooks
|
|
|
|
def perform(pipeline_id)
|
|
Ci::Pipeline.find_by(id: pipeline_id)
|
|
.try(:execute_hooks)
|
|
end
|
|
end
|