debian-mirror-gitlab/lib/tasks/ci/cleanup.rake
2015-09-25 12:07:36 +05:30

9 lines
191 B
Ruby

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