woodpecker/docs/versioned_docs/version-3.0/20-usage/45-cron.md

29 lines
972 B
Markdown
Raw Normal View History

2024-01-31 18:47:52 +00:00
# Cron
To configure cron jobs you need at least push access to the repository.
## Add a new cron job
1. To create a new cron job adjust your pipeline config(s) and add the event filter to all steps you would like to run by the cron job:
```diff
steps:
- name: sync_locales
image: weblate_sync
settings:
url: example.com
token:
from_secret: weblate_token
+ when:
+ event: cron
+ cron: "name of the cron job" # if you only want to execute this step by a specific cron job
```
2024-06-13 17:31:54 +00:00
2. Create a new cron job in the repository settings:
2024-01-31 18:47:52 +00:00
![cron settings](./cron-settings.png)
The supported schedule syntax can be found at <https://pkg.go.dev/github.com/gdgvda/cron#hdr-CRON_Expression_Format>. If you need general understanding of the cron syntax <https://it-tools.tech/crontab-generator> is a good place to start and experiment.
2024-01-31 18:47:52 +00:00
Examples: `@every 5m`, `@daily`, `30 * * * *` ...