Rolladen Automation - nur 1x täglich ausführen

Guten Tag zusammen,

ich habe ein Problem mit meiner Rolladensteuerung in Verbindung mit dem Sonnenstand:
Ich habe das mit 2 Automationen realisiert, eine zum Schließen, eine zum öffnen.

Nun möchte ich, dass die Automation zum öffnen nicht ständig wieder mein Relais ansteuert, sonder ndas nur ein mal macht.
Wie kann ich das realisieren?

Danke und Gruß
Runningelmi

alias: Rolladen Ost - Teilweise schließen bei Sonne
description: ""
triggers:
  - minutes: /1
    trigger: time_pattern
conditions:
  - condition: state
    entity_id: input_boolean.automation_rolladen_ost_aktiv
    state: "on"
  - condition: numeric_state
    entity_id: sun.sun
    attribute: azimuth
    above: 65
  - condition: numeric_state
    entity_id: sun.sun
    attribute: azimuth
    below: 140
  - condition: numeric_state
    entity_id: sensor.aussentemp
    above: 18
actions:
  - target:
      entity_id: scene.rollos_ost
    action: scene.turn_on
    data: {}
mode: single

alias: Rolladen Ost - Wieder öffnen bei Sonnenverlauf
description: ""
triggers:
  - minutes: /1
    trigger: time_pattern
conditions:
  - condition: numeric_state
    entity_id: sun.sun
    attribute: azimuth
    above: 140
  - condition: numeric_state
    entity_id: sensor.aussentemp
    above: 18
actions:
  - data:
      position: 100
    target:
      device_id:
        - 4f379ab744d20c344cb8b5e956fa598f
        - 53560a2f6ff42f5530496a92ca7b340b
        - d6b6b76954aff1bab6ff4b032b7f9de9
    action: cover.set_cover_position
mode: single

:crayon:by HarryP: Code-/Logzeilen formatiert (bitte immer in </> einbinden)

Nimm als Trigger nicht das Timepattern, sondern z.B. den azimuth von >140

Danke, läuft.

Wie kann ich das in eine Automation packen? Mir fehlt noch das Verständnis für die Öffnung der Rollos in einer Automation…