summaryrefslogtreecommitdiff
path: root/lib/tasks/cleanup.rake
blob: 5bcb5c4646554bcefd3ef0158dea3c963934926f (plain)
1
2
3
4
5
6
namespace :cleanup do
  desc "GitLab CI | Clean running builds"
  task builds: :environment do
    Build.running.update_all(status: 'canceled')
  end
end