#No conversation response if using stop action in conditional

1 messages · Page 1 of 1 (latest)

proper marlin
#

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
#

No conversation response if using stop action in conditional

echo oak
#

What version of HA are you using? I thought that had been addressed

proper marlin
#

2026.1.3 so only beta would be newer.

steep trellis
#

Stop should stop the whole automation, not just a branch

steep trellis
#

Never mind, I see now the issue is that the response isn’t getting sent. Seems like a bug needs to be filed.

proper marlin
#

I'll wait for 2026.2 as the release is soon and if its then still broken I will open an issue.

Same for another issue I found with voice pe and ask question. Then, no response at all is happening, looks like ask question opens a new conversation and the original one never returns.