Add the sensor value of the trigger

Hi
I’ve got an automation with 3 numeric_state triggers and when this happens I receive this notification:

action:
  - service: notify.family
    metadata: {}
    data:
      message: the trigger: "{{ trigger.to_state.name }}". The temperature is...

I would like to add the actual temperature of that specific trigger / sensor. Is that possible?

Thanks

{{ trigger.to_state.state }}

Reference

State Objects

1 Like

I saw the page first:
Automation trigger variables - Home Assistant (home-assistant.io)
and then realized I had to combine it with:
State objects - Home Assistant (home-assistant.io)
to have the information I needed.

Thanks!