Skip to content

Commit

Permalink
ci: Update Command Monitoring
Browse files Browse the repository at this point in the history
  • Loading branch information
CalumTowers authored Mar 7, 2024
1 parent 9c97e12 commit a0a33f0
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions app/Console/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,13 +69,16 @@ protected function schedule(Schedule $schedule)
->doNotMonitor();

$schedule->command('sync:tg-forum-groups')
->dailyAt('04:30');
->dailyAt('04:30')
->doNotMonitor();

$schedule->command('model:prune', ['--model' => MonitoredScheduledTaskLogItem::class])
->dailyAt('08:00');
->dailyAt('08:00')
->doNotMonitor();

$schedule->command('waiting-lists:check-eligibility')
->dailyAt('08:30');
->dailyAt('08:30')
->doNotMonitor();
}

/**
Expand Down

0 comments on commit a0a33f0

Please sign in to comment.