WordPress has something called wp-cron. If you haven’t read about it, its fine. But please be aware that you cannot live without it!
Wordpress run cron jobs when a user browse the website, for better performance, this behaviour is disabled.
Then add a line like below in it.
*/10 * * * * curl https://example.com/edition/wp-cron.php?doing_wp_cron > /dev/null 2>&1
*/10 * * * * php /var/www/example.com/htdocs/public/edition/wp-cron.php?doing_wp_cron > /dev/null 2>&1
Above will run wp-cron every 10 minutes. You can change */10 to */5 to make it run every 5 minute