Hassio automation editor

Hi I’m trying to set an automation that only triggers Monday to Friday at 6.30.
I’m using the hassio automation editor bit can’t find how to do this. Documentation on automation only seems to cover the .yaml route.

Anyone know what to do ? Many thanks

Sadly the automation editor is very limited. With a time trigger and a time condition:

automation weekday_dinner:
  - alias: weekday mornings
    initial_state: 'on'
    id: weekday_mornings
    trigger:
    - platform: time
      at: '06:30:00'
    condition:
    - condition: time
      weekday:
        - mon
        - tue
        - wed
        - thu
        - fri
    action:

Or, with a workday sensor:

automation weekday_dinner:
  - alias: weekday mornings
    initial_state: 'on'
    id: weekday_mornings
    trigger:
    - platform: time
      at: '06:30:00'
    condition:
    - condition: state
      entity_id: binary_sensor.workday
      state: 'on'
    action:

Thanks for replay was thinking this was the case but didn’t want to give up if I was wrong. I’ve got an old automation.yaml going, will just add it to that… thanks again.