WTH is going on with calendar? It doesn't launch any automation

Hi! In my calendar I’m trying to launch an automation when it’s triggered by the calendar. It works in the beginning but now it doesn’t. I’ve made a format of my HA and make a new one from zero, but now I’m in the same point, the calendar doesn’t triggers any automation! What am I doing wrong??

This is the automation yaml:

alias: Lanzador Carga Nocturna - Calendario
description: “”
trigger:

  • platform: calendar
    event: start
    offset: “0:0:0”
    entity_id: calendar.carga_nocturna
  • platform: time
    at: “00:00:00”
    condition:
    action:
  • service: automation.turn_on
    metadata: {}
    data: {}
    target:
    entity_id: automation.encendido_cargadores_secuencial
    mode: single

And obviously at the calendar I have an instance for lots of moments to try.

Thanks.

Are you sure what you want to do is turn on the automation? Using automation.turn_on is for enabling a disabled automation (which is general not advised), it does not cause the automation to run (FYI, this is also not the advised way of working). If there is no additional conditional logical needed, why not just add the triggers to automation.encendido_cargadores_secuencial?

What do the debug traces show?