Add Custom Jobs
No scheduled job should be added in the main repo to ensure it is generalized. Please use the plugin repo to add custom jobs.
When adding a job, use the following format:
'[name of the task]': {
'task': '[import path of the task, e.g. tasks_plugin.module.function]',
'schedule': '0 0 * * *', # cron schedule
'args': args,
'kwargs': kwargs,
},