Continue after the first parallel action has finished

Currently an action following 2 parallel actions only continues after all parallel actions are completed.
I’dd like the option of continuing as soon as one of the parallel actions has completed.

Theoretical example

  • Define 2 parallel actions, one with a timer waiting 2 minutes , the other one with a timer waiting 5 minutes.
    In that case, the subsequent action will only trigger after 5 minutes.
    Idd like the option of it continuing after 2 minutes.
alias: New Automation test
description: ""
trigger: []
condition: []
action:
  - parallel:
      - delay:
          hours: 0
          minutes: 2
          seconds: 0
          milliseconds: 0
      - delay:
          hours: 0
          minutes: 5
          seconds: 0
          milliseconds: 0
  - service: notify.mobile_app_iphone
    data:
      message: test
mode: single