Google Calendar Notifications to Iphone isn't working

Hi Everyone, I have sucessfully integrated my Google Calendars into Home Assistant, I have also integrated my Iphone as well.
I am trying to accomplish the Google Calender event should send a message/notification to my Iphone.
I am attaching my YAML code. Pls help:
alias: New Harsha Calender Event Notification
description: New Harsha Calender Event Notification
triggers:

  • trigger: calendar
    entity_id: calendar.EMAIL_gmail_com
    event: start
    offset: “-0:30:0”
    conditions:
    actions:
  • action: notify.mobile_app_iphone_35
    data:
    title: Calender Event
    message: >-
    Event {{ trigger.calendar_event.summary }} starts at {{
    trigger.calendar_event.start }}
  • action: notify.mobile_app_yaminis_iphone
    data:
    title: Calendar Event
    message: >-
    Event {{ trigger.calendar_event.summary }} starts at {{
    trigger.calendar_event.start }}
    mode: single

Please format the configuration properly (Questions Guidelines #11) so that we can rule out whether the issue is coming from the configuration’s construction.

It would also be helpful if you could describe how you are testing.

Are any events triggering the automation?

Hi, I have an event in my GOOGLE Calendar Turn on Light at 5.15 pm and I want to test this event
I have offset by 5 mins before the event happens, I want a notification on my mobile to say Turn on Light

YAML:
alias: Test Turn on Light - event trigger
description: Turn on Light
triggers:

  • trigger: calendar
    entity_id: calendar.MYEMAILID_gmail_com
    event: start
    offset: “-0:5:0”
    conditions:
  • condition: state
    entity_id: calendar.MYEMAILID_gmail_com
    attribute: message
    state: Turn on Light
    actions:
  • action: notify.mobile_app_iphone_35
    data:
    message: Turn on Light
    mode: parallel
    max: 10

Please format the configuration properly (Questions Guidelines #11) so that we can rule out whether the issue is coming from the configuration’s construction.

Using a State condition with a calendar entity is not advised, you will get more reliable results using Template condition that utilize the trigger variable.

Also make sure you understand the timing and mode requirements as described in the Calendar - Automation docs.