Working Time Triggered Automation No Longer Triggering, But Works When Manually Triggering It

ok. I’m trying to wrap my head around this one and cannot figure it out. The automation below was working wonderfully for over a year and recently stopped working, noticed it occurring on 106.6 and now on 107.5.

Automation does not trigger at the defined time. However, it works when manually triggering it from the UI.

- id: house_auto_arm
  alias: Auto Arm House At 1AM
  initial_state: 'on'
  trigger:
  - at: 01:00:00
    platform: time
  condition:
  - condition: and
    conditions:
    - condition: state
      entity_id: alarm_control_panel.home_alarm
      state: disarmed
    - condition: or
      conditions:
      - condition: state
        entity_id: person.him
        state: home
      - condition: state
        entity_id: person.her
        state: home
    - condition: state
      entity_id: person.momdad
      state: not_home
  action:
  - data:
      message: Arming House for the Night
      title: House Alert
    service: notify.all_ios_devices
  - data:
      code: 1234
      entity_id: alarm_control_panel.home_alarm
    service: alarm_control_panel.alarm_arm_home