CRON
To create a new CRON job, add the event filter:
when: event: cron # without setting a name, the pipeline is run for every 'cron' event cron: "name of the cron job"
steps:[...]
The supported schedule syntax is described in the gdgvda/cron documentation. The crontab generator is a helpful tool to get started with CRON expressions.
Common shortcuts:
@every 5m: every 5 minutes@daily: every day at midnight30 * * * *: every hour at 30 minutes@hourly: every hour at the beginning of the hour@weekly: every week on Sunday at midnight@monthly: every month on the first day at midnight