Reload automations

The automations are triggered a single time, then I always need to reload?

Normally, no. As long as a trigger is valid and HA is running, they should work. No reloading necessary unless you change one while HA is running.

For example: I monitor the speed of the broadband with the speedtest component once per hour, when it is below 10Mbit/s I configured an automation to receive a pushbullet notification. But this only works the first time, the next I get no notification. And this has happened to other automations as well.

Can you post the automation? One of us may see something that stands out.

When you post, select the code in the forum editor and press this button:

That will preserve the formatting so it can be easily read.

- alias: Internet
trigger:
  platform: template
  value_template: "{% if states('sensor.speedtest_download') | float < 10 %}true{% endif %}"
action:
  service: notify.mypush
  data:
    message: "Internet Lenta! {{ states('sensor.speedtest_download') }} Mbit/s"

Looks right to me - I had to set it to 95 to get it to trigger on my setup but it did work.

Any errors in the log? You may want to try to a reset of HA so you have a clean log, then noting the time and manually triggering it to see if you come up with any errors in the log.

The log shows nothing wrong. The notification is only sent the first time after I reload the automation or restart the HA.
Do you have any further ideas about what might be happening?

Nothing off hand but I’m sure someone will see this and find something I missed.

@Augusto_Soares did you ever find a solution to this? I’m having the same problem here - Sensor automation triggers once, but doesn't repeat