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

schedule_builds.rake « ci « tasks « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 49435504c67c77c75d58a21448e100ff932c89fa (plain)
1
2
3
4
5
6
namespace :ci do
  desc "GitLab CI | Clean running builds"
  task schedule_builds: :environment do
    Ci::Scheduler.new.perform
  end
end