Trigger: platform: template does not fire an action

I am trying to fire and event when a input slider time (“sensor.christbaum_off_time”) is arrived.

…but I don’t see that message. Neither in the logbook nore in my pushbullet.

That automation didn’t work because you try to compare objects, not values.
You should use states("sensor.time") or states.sensor.time.state

value_template: '{{ states("sensor.time") == states("sensor.christbaum_off_time") }}'

@omeasire Thanks that does make sense and also is the solution

T H A N K S