Temperature Automation Not Triggering When Temp Changes

I’m trying to toggle a bool when a sensors temperature goes below an Input_number. My issue is that when the temperature changes, this is not triggered.

Here is my code:

alias: Temp Too Low Automation
description: ""
trigger:
  - platform: template
    value_template: >-
      {{ states('sensor.thermo_temperature')|float <
      states('input_number.temperature_low_target') | int  }}
condition: []
action:
  - service: input_boolean.turn_on
    data: {}
    target:
      entity_id: input_boolean.temp_too_low
mode: single

Template triggers only trigger when the template changes from false to true. If your template result remains true it will not re-trigger when the sensor state changes. Likewise if the template is already true after saving/reloading the automation. It has to go from false to true to trigger.

Thank you! Thats exactly what was happening