I have an automation taht is using a sentence based trigger. At some points, I am doing checks and use the stop action in case certain conditions are not met (= within an if branch). I try to set a conversation response before calling the stop action, but it does not work. The script always ends with "Done" if such situation occurs. This happens for both, triggering via voice pe as well as assist in companion app. Is there a way to have a custom response when using the stop action in a conditional?
Example (minimal) automation having this issue:
alias: Test
description: ""
triggers:
- trigger: conversation
command: This is a test
conditions: []
actions:
- if:
- condition: template
value_template: "{{ true }}"
then:
- set_conversation_response: "{{ 'test successfull' }}"
- stop: I test something.
- variables:
we: will never reach here
mode: single