diff options
author | Jacob Vosmaer <contact@jacobvosmaer.nl> | 2014-12-10 17:16:27 +0100 |
---|---|---|
committer | Jacob Vosmaer <contact@jacobvosmaer.nl> | 2014-12-10 17:16:27 +0100 |
commit | 3ea258e60d1d5da9552babdb37e99697c68ff969 (patch) | |
tree | 29ee9087a6cecafe009b5df2d78dacbba252d60a | |
parent | b69f246f28ca2af41c33a9f39542470daa96dfe2 (diff) | |
download | gitlab-ci-3ea258e60d1d5da9552babdb37e99697c68ff969.tar.gz |
Remove 'Done' from the schedule_builds cron job
A cron job should be quiet if all goes well. Getting an email that says
'Done' every hour is annoying for administrators.
-rw-r--r-- | CHANGELOG | 3 | ||||
-rw-r--r-- | lib/tasks/schedule_builds.rake | 1 |
2 files changed, 3 insertions, 1 deletions
@@ -1,3 +1,6 @@ +v5.3 + - Remove annoying 'Done' message from schedule_builds cron job + v5.2 - Improve performance by adding new indicies - Separate Commit logic from Build logic in prep for Parallel Builds diff --git a/lib/tasks/schedule_builds.rake b/lib/tasks/schedule_builds.rake index 02d6bb0..355414b 100644 --- a/lib/tasks/schedule_builds.rake +++ b/lib/tasks/schedule_builds.rake @@ -1,5 +1,4 @@ desc "GitLab CI | Clean running builds" task schedule_builds: :environment do Scheduler.new.perform - puts "Done" end |