Help with automation not running?

Hi, any idea why this automation does not automatically run every 30 minutes?

alias: Update OpenUV
description: ""
triggers:
  - trigger: time_pattern
    minutes: "30"
conditions: []
actions:
  - action: homeassistant.update_entity
    data:
      entity_id:
        - sensor.openuv_current_uv_index
        - sensor.openuv_current_uv_level
        - sensor.openuv_max_uv_index
mode: single

That trigger will fire every time the time minutes is equal to 30. So 9:30, 10:30, 11:30, etc.

Changing “30” to /30 should get you what you’re after.

2 Likes

Oh damn ok right, thanks!