summaryrefslogtreecommitdiff
path: root/lib/tasks/ci/cleanup.rake
blob: 31c3928e797bb674cfa5d76395aeb943ea61aa76 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

namespace :ci do
  namespace :cleanup do
    desc "GitLab | CI | Clean running builds"
    task builds: :environment do
      Ci::Build.running.update_all(status: 'canceled')
    end
  end
end