Error in Automation after upgrade from 0.84 to 088.1

Hi,

I had the following automation for generating the Z-Wave Graph every five minutes. In 0.84 it was working without issues.

- alias: Generate Z-Wave graph
  trigger:
    platform: time
    minutes: '/5'
  action:
    - service: shell_command.z_wave_graph

Since the upgrade to 0.88.1 I am getting the following error:

ERROR (MainThread) [homeassistant.config] Invalid config for [automation]: [minutes] is an invalid option for [automation]. Check: automation->trigger->0->minutes.

Br,
Johannes

There was a change in the ‘time’ platform. You need to use ‘time_pattern’ instead. See the docs.

Thanks, that was the solution.

Br,
Johannes