#Choose option not executing after automation is triggered

1 messages · Page 1 of 1 (latest)

graceful verge
#

I have an automation with three triggers, then a choose with no conditions before the choose. When Trigger3 occurs - nothing happens - not even the default option for the choose statement (which I added as a troubleshooting step). Trigger1 and Trigger2 function exactly as expected.

I've been trying to get this resolved for quite some time, with no luck. I've tried adjusting/changing things - but it seems that even though trigger3 gets triggered - it short circuits and breaks the rest of the automation somehow.

conditions: []
actions:
  - choose:
      - conditions:
          - condition: trigger
            id:
              - Trigger1
              - Trigger2
        sequence:
          - do stuff...
      - conditions:
          - condition: trigger
            id:
              - Trigger3
        sequence:
          - do other stuff... 
    default:
      - action: logbook.log
silk nova