mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-09 12:46:07 +10:00
9 lines
191 B
Ruby
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
|