Automation Trigger when HVAC current temperature is above 30

I want to turn on the HVAC if “current_temprature” from same HVAC is > 30
I did the following but it is not triggering even temperature is above 30.

If I manually Run Automation it works well.

alias: Server AV Chat
description: ''
trigger:
  - platform: numeric_state
    entity_id: climate.l1_109
    attribute: current_temperature
    above: 27
condition:
  - condition: time
    weekday:
      - sun
    after: '10:00:00'
    before: '17:00:00'
action:
  - service: scene.turn_on
    target:
      entity_id: scene.turn_on_server_ac_if_temp_above_27
    metadata: {}
  - service: climate.set_temperature
    data:
      temperature: 27
      hvac_mode: cool
    target:
      device_id: 290e90fc0d72a9c3ef3af87719409536
mode: single

The temperature has to cross from below 30 to above 30 to trigger. It won’t trigger if the temperature is already above 30 when the automation was created.