Class: Ci::PipelineScheduleService

Inherits:
BaseService show all
Defined in:
app/services/ci/pipeline_schedule_service.rb

Instance Attribute Summary

Attributes inherited from BaseService

#current_user, #params, #project

Instance Method Summary collapse

Methods inherited from BaseService

#initialize

Methods included from BaseServiceUtility

#deny_visibility_level, #event_service, #log_error, #log_info, #notification_service, #system_hook_service, #todo_service, #visibility_level

Methods included from Gitlab::Allowable

#can?

Constructor Details

This class inherits a constructor from BaseService

Instance Method Details

#execute(schedule) ⇒ Object



5
6
7
8
9
10
11
12
# File 'app/services/ci/pipeline_schedule_service.rb', line 5

def execute(schedule)
  return unless project.persisted?

  # Ensure `next_run_at` is set properly before creating a pipeline.
  # Otherwise, multiple pipelines could be created in a short interval.
  schedule.schedule_next_run!
  RunPipelineScheduleWorker.perform_async(schedule.id, current_user&.id)
end