15 lines
No EOL
399 B
YAML
15 lines
No EOL
399 B
YAML
# https://github.com/ondrejbartas/sidekiq-cron
|
|
# use https://crontab.guru/ to validate
|
|
|
|
# executed At 12:00 on every day-of-month.
|
|
internal_check_new_versions_job:
|
|
cron: "0 12 */1 * *"
|
|
class: "Internal::CheckNewVersionsJob"
|
|
queue: scheduled_jobs
|
|
|
|
# executed At every 5th minute..
|
|
trigger_scheduled_items_job:
|
|
cron: "*/5 * * * *"
|
|
class: "TriggerScheduledItemsJob"
|
|
queue: scheduled_jobs
|
|
|