- allow events to fire when a specified list of other events was fired
- this allows special scheduling like e.g. "first/second/third" sunday of a month
Example: Event that fires every first sunday in a month
Code (YAML):
# lets create some normal events to use in a combined event
sunday
:
# every sunday
timing:
occasion
:
"sunday"
time
:
"12:00"
# SAME TIME AS THE OTHER EVENT BELOW (IMPORTANT)
firstWeekOfMonth
:
# every day of the first week in a month
timing:
occasion
:
"01, 02, 03, 04, 05, 06, 07"
time
:
"12:00"
# this event will fire on every first sunday in a month at 12:00
firstSundayInMonth:
events
:
# lables of the two "normal" events above
-
"sunday"
-
"firstWeekOfMonth"