blob: 993a95fef565b87d049e4d6e15e3e0ed7c33ee2e (
plain)
1
2
3
4
5
6
7
8
9
10
|
# Here is a list of jobs that are scheduled to run periodically.
# We use a UNIX cron notation to specify execution schedule.
#
# Please read here for more information:
# https://github.com/ondrejbartas/sidekiq-cron#adding-cron-job
stuck_ci_builds_worker:
cron: "0 0 * * *"
class: "StuckCiBuildsWorker"
queue: "default"
|