You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Routemaster configs can get quite verbose and repetitive. It would be great to be able to convert something like this:
states:
- gate: firsttriggers:
- time: 17h30mtimezone: metadata.timezone
- event: entry # for debugexit_condition: 12h has passed since history.entered_state or metadata.debugnext: second
- gate: secondtriggers:
- time: 17h30mtimezone: metadata.timezone
- event: entry # for debugexit_condition: 12h has passed since history.entered_state or metadata.debugnext: third
into this
references:
wait-one-day: &wait-one-daytriggers:
- time: 17h30mtimezone: metadata.timezone
- event: entry # for debugexit_condition: 12h has passed since history.entered_state or metadata.debugstates:
- gate: first<<: *wait-one-daynext: second
- gate: second<<: *wait-one-daynext: third
However I believe at the moment the config schema validation would reject this.
The text was updated successfully, but these errors were encountered:
Routemaster configs can get quite verbose and repetitive. It would be great to be able to convert something like this:
into this
However I believe at the moment the config schema validation would reject this.
The text was updated successfully, but these errors were encountered: