this works:
alias: foobar
sequence:
- variables:
test_var:
value: 22
other: 33
sft: 44
- stop: test
response_variable: test_var
description: ""
but this does not, and i don't get why.
this is just an example, not the thing i am trying to make.
alias: foobar
sequence:
- if:
- condition: time
after: "06:00:00"
then:
- variables:
test_var:
value: 22
other: 33
sft: 44
- stop: test
response_variable: test_var
description: ""
is that a design decission? it seems to stop working if you leafe the top level scope. but you cannot change variables from top level in a lower level, what makes them useless. seemingly you cannot return from a lower level.