Flightradar24 / google Calendar

Hello

I want to load a flight number from my Google calendar (for example KL597) and show this flight on a Flightradar24 card.
I have 2 automations
1
an automation that places the flight number in a helper

- id: update_active_flight_number
  alias: Vluchtnummer Helper Updaten
  triggers:
  - entity_id: sensor.huidig_vluchtnummer_crew
    not_to: Geen vlucht
    trigger: state
  actions:
  - data:
      value: '{{ states(''sensor.huidig_vluchtnummer_crew'') }}'
    action: input_text.set_value
    target:
      entity_id: input_text.actief_vluchtnummer

sensor.huidig_vluchtnummer_crew: status KL597
2
an automation that reloads flightradar24 and sets the active flight number.
input_text.input_text_actief_vluchtnummer : Status KL597 is also an helper

- id: Herlaadt de Flightradar24 integratie wanneer het actieve vluchtnummer verandert
  alias: Herlaadt de Flightradar24 integratie wanneer het actieve vluchtnummer verandert
  description: Herlaadt de Flightradar24 integratie wanneer het actieve vluchtnummer
    verandert
  triggers:
  - entity_id: input_text.actief_vluchtnummer
    trigger: state
  conditions: []
  actions:
  - data:
      entry_id: e28320c32ad0862dc0c39f5baeb10ad8
    action: homeassistant.reload_config_entry
  mode: single

this second automation just won’t work

Who already tried this?
Renaatdb