blob: c70df5ccccd7b1210b7860c3a3dcdfda2803d298 [file] [log] [blame]
James E. Blaireff5a9d2017-06-20 00:00:37 -07001:title: Timer Driver
2
3Timer
4=====
5
6The timer driver supports triggers only. It is used for configuring
7pipelines so that jobs run at scheduled times. No connection
8configuration is required.
9
10Trgger Configuration
11--------------------
12
13Timers don't require a special connection or driver. Instead they can
14simply be used by listing **timer** as the trigger.
15
16This trigger will run based on a cron-style time specification.
17It will enqueue an event into its pipeline for every project
18defined in the configuration. Any job associated with the
19pipeline will run in response to that event.
20
21**time**
James E. Blair88e53882017-06-23 21:45:07 +010022 The time specification in cron syntax. Only the 5 part syntax is
23 supported, not the symbolic names. Example: ``0 0 * * *`` runs at
24 midnight.