<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Multiple automations in single script sometimes breaks when using `assistant.event.OkGoogle` sta in Home Automation</title>
    <link>https://www.googlenestcommunity.com/t5/Home-Automation/Multiple-automations-in-single-script-sometimes-breaks-when-using-assistant/m-p/684346#M53226</link>
    <description>&lt;P&gt;It happened to me, too. I have multiple automations, but it always run the first automation even if the 3rd is supposed to run.&lt;/P&gt;&lt;P&gt;I also found that the "assistant.command.Broadcast" doesn't work unless the Device is specified. Previously The Device was optional.&lt;/P&gt;</description>
    <pubDate>Sat, 08 Mar 2025 10:23:00 GMT</pubDate>
    <dc:creator>gte345k</dc:creator>
    <dc:date>2025-03-08T10:23:00Z</dc:date>
    <item>
      <title>Multiple automations in single script sometimes breaks when using `assistant.event.OkGoogle` starter</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Multiple-automations-in-single-script-sometimes-breaks-when-using-assistant/m-p/435715#M18740</link>
      <description>&lt;P&gt;I am trying to write a script in the Google Home Script Editor that uses multiple automations inside the `automations` struct as described at the bottom of the &lt;A title="Automation Struct " href="https://developers.home.google.com/automations/schema/reference/standard/automation" target="_blank" rel="noopener"&gt;article "&lt;SPAN&gt;Automation".&lt;/SPAN&gt;&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is a simple example that is modified from the example in the documentation article:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="css"&gt;metadata:
  name: Test MultiAuto
  description: Testing multiple automations in a single script.

automations:
  - name: At 11:40pm, turn on light.
    starters:
      - type: assistant.event.OkGoogle
        eventData: query
        is: help me eat
    actions:
      type: device.command.OnOff
      devices: Sofa - Living Room
      on: true
  - name: At 11:38pm, turn off light and broadcast "time to sleep"
    starters:
      type: time.schedule
      at: 2:40 AM # HH:MM XM (12 hours format). Adjust time as needed
    actions:
      - type: device.command.OnOff
        devices: Sofa - Living Room
        on: false
      - type: assistant.command.Broadcast
        message: time to sleep
        devices: Living Room Display - Living Room&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I say "Hey Google, help me eat" it doesn't always work. For the first 20 minutes of trying to write and debug the script it wasn't working. It finally started just working oddly for a while. But then I changed the `is:` to a new query such as "help me test" and it was back to saying it doesn't understand. However, saying the previous query "help me eat" made it give no response like it was working, but the actions didn't actually execute. After another 10 minutes of it not responding to the new "help me test" query, I changed the script back to "help me eat" and saved it, and then instantly the assistant picked up "help me eat" again and executed the respective action.&lt;/P&gt;&lt;P&gt;The only thing I can think of right now is that the `assistant.event.OkGoogle` starter query takes time to fully propagate in the system and recognize the query?&lt;/P&gt;&lt;P&gt;I have a more complex script with 4 automations each with their own `assistant.event.OkGoogle` starter, and none of those sets of starters ever register and execute their respective actions. I'd love for this to work.&lt;/P&gt;&lt;P&gt;I am using a Nest Hub Max for testing the script. That's what I am saying "Hey Google, help me eat" to. Hopefully this helps, thank you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 17 Jun 2023 19:46:09 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Multiple-automations-in-single-script-sometimes-breaks-when-using-assistant/m-p/435715#M18740</guid>
      <dc:creator>Alphabet</dc:creator>
      <dc:date>2023-06-17T19:46:09Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple automations in single script sometimes breaks when using `assistant.event.OkGoogle` sta</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Multiple-automations-in-single-script-sometimes-breaks-when-using-assistant/m-p/435888#M18766</link>
      <description>&lt;P&gt;Thanks for sharing your experience&amp;nbsp;&lt;a href="https://www.googlenestcommunity.com/t5/user/viewprofilepage/user-id/683"&gt;@Alphabet&lt;/a&gt;. &lt;SPAN&gt;assistant.event.OkGoogle propagation&amp;nbsp;should not take time. To isolate the problem, can you try a very simple script like one below and use bunch of unique queries (e.g. "test automation 1", "test automation 2" etc.) to run the automation? Please share if propagation&amp;nbsp;is taking time when you update the query.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="css"&gt;metadata:
  name: Test automation
  description: Test automation

automations:
  starters:
    - type: assistant.event.OkGoogle
      eventData: query
      is: Test automation 1 # Then replace with Test automation 2 etc.

  actions:
    - type: assistant.command.OkGoogle
      okGoogle: Tell me the weather
      devices: &amp;lt;your speaker name from autocomplete&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 17 Jun 2023 16:10:04 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Multiple-automations-in-single-script-sometimes-breaks-when-using-assistant/m-p/435888#M18766</guid>
      <dc:creator>Prafulla</dc:creator>
      <dc:date>2023-06-17T16:10:04Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple automations in single script sometimes breaks when using `assistant.event.OkGoogle` sta</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Multiple-automations-in-single-script-sometimes-breaks-when-using-assistant/m-p/435994#M18785</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://www.googlenestcommunity.com/t5/user/viewprofilepage/user-id/369219"&gt;@Prafulla&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;thanks for the quick response! I don't have any issues with using the&amp;nbsp;&lt;SPAN&gt;assistant.event.OkGoogle in scripts with single automations.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Here is a custom script that has been working fine for the past 2-3 days. I can say "Hey Google, fix upstairs bathroom" or "Hey Google, Fix the upstairs bathroom" and it executes properly every time.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="css"&gt;# --------------------------------------------------------------------------------------------- #
# On the Nanoleaf Matter A19 bulbs, if the power is accidentially cut for less than ~3 seconds,
# their state is sometimes misrepresented. This automation refreshes them immediately if needed.
# --------------------------------------------------------------------------------------------- #
metadata:
  name: Fix Upstairs Bathroom
  description: Fixes the upstairs bathroom lights states in the event of accidentally cutting the power (light switch).

automations:
  starters:
    - type: assistant.event.OkGoogle
      eventData: query
      is: Fix Upstairs Bathroom
    - type: assistant.event.OkGoogle
      eventData: query
      is: Fix the Upstairs Bathroom

  actions:
    - type: device.command.OnOff
      on: true
      devices:
        - Right Light - Upstairs Bathroom
        - Left Light - Upstairs Bathroom
    - type: time.delay
      for: 1sec
    - type: device.command.OnOff
      on: false
      devices:
        - Right Light - Upstairs Bathroom
        - Left Light - Upstairs Bathroom&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just to be sure, I modified my script from my original post to match your script:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="css"&gt;metadata:
  name: Test MultiAuto
  description: Testing multiple automations in a single script.

automations:
  starters:
    - type: assistant.event.OkGoogle
      eventData: query
      is: Test automation two # Then replace with Test automation 2 etc.

  actions:
    - type: assistant.command.OkGoogle
      okGoogle: Tell me the weather in london
      devices: Living Room - Living Room&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This worked instantly, though I had to change the integer "1"/"2" to "one"/"two" as assistant doesn't seem to normally parse the voice as an integer. When changing the "is" field to "one" or "two" or "three" any change instantly propagated. No issues.&lt;/P&gt;&lt;P&gt;I then took the liberty to modify it even further to use multiple automations in the single script:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="css"&gt;metadata:
  name: Test MultiAuto
  description: Testing multiple automations in a single script.

automations:
  - name: Testing Automation 1
    starters:
      - type: assistant.event.OkGoogle
        eventData: query
        is: Test automation one # Then replace with Test automation 2 etc.

    actions:
      - type: assistant.command.OkGoogle
        okGoogle: Tell me the weather in berlin
        devices: Living Room - Living Room

  - name: Testing Automation 2
    starters:
      - type: assistant.event.OkGoogle
        eventData: query
        is: Test automation two # Then replace with Test automation 2 etc.

    actions:
      - type: assistant.command.OkGoogle
        okGoogle: Tell me the weather in london
        devices: Living Room - Living Room&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This didn't work. I don't think something is wrong with how I'm using multiple automations (syntax), but please let me know?&lt;/P&gt;&lt;P&gt;I found that the assistant sometimes caches the single automation script. So Testing Automation 2 works, but Testing Automation 1 didn't. Eventually they both stopped working.&lt;/P&gt;</description>
      <pubDate>Sat, 17 Jun 2023 19:46:50 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Multiple-automations-in-single-script-sometimes-breaks-when-using-assistant/m-p/435994#M18785</guid>
      <dc:creator>Alphabet</dc:creator>
      <dc:date>2023-06-17T19:46:50Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple automations in single script sometimes breaks when using `assistant.event.OkGoogle` sta</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Multiple-automations-in-single-script-sometimes-breaks-when-using-assistant/m-p/436234#M18823</link>
      <description>&lt;P&gt;Very interesting. Thanks for sharing your observations&amp;nbsp;&lt;a href="https://www.googlenestcommunity.com/t5/user/viewprofilepage/user-id/683"&gt;@Alphabet&lt;/a&gt;. I am taking a note of this for internal investigations.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 18 Jun 2023 01:08:09 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Multiple-automations-in-single-script-sometimes-breaks-when-using-assistant/m-p/436234#M18823</guid>
      <dc:creator>Prafulla</dc:creator>
      <dc:date>2023-06-18T01:08:09Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple automations in single script sometimes breaks when using `assistant.event.OkGoogle` sta</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Multiple-automations-in-single-script-sometimes-breaks-when-using-assistant/m-p/436303#M18841</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I have the exact same problem.&amp;nbsp; My code follows (will be extended to all days of the week):&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;metadata:
  name: Garbage Assistant
  description: Scripted automation

automations:
  - starters:
      - type: assistant.event.OkGoogle
        eventData: query
        is: Test garbage Monday

    actions:
      - type: assistant.command.Broadcast
        message: On Monday you should take out the white organic bag.

  - starters:
      - type: assistant.event.OkGoogle
        eventData: query
        is: Test Garbage Tuesday

    actions:
      - type: assistant.command.Broadcast
        message: On Tuesday you should take out the black mixed waste bag.&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 18 Jun 2023 08:09:30 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Multiple-automations-in-single-script-sometimes-breaks-when-using-assistant/m-p/436303#M18841</guid>
      <dc:creator>Stef-15</dc:creator>
      <dc:date>2023-06-18T08:09:30Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple automations in single script sometimes breaks when using `assistant.event.OkGoogle` sta</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Multiple-automations-in-single-script-sometimes-breaks-when-using-assistant/m-p/450615#M19852</link>
      <description>&lt;P&gt;Just wanted to add that I'm having the exact same issue with the 'OKGoogle' starter when there are multiple automations in one script.&lt;/P&gt;&lt;P&gt;&lt;a href="https://www.googlenestcommunity.com/t5/user/viewprofilepage/user-id/369219"&gt;@Prafulla&lt;/a&gt;, any updates on this issue?&lt;/P&gt;&lt;P&gt;Here's an example script that's not working for me.&amp;nbsp; However, when I remove either one of the automations from this script, then the remaining one works on it's own.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;metadata:
  name: Turn on/off the great room lights
  description: When someone tells Assistant "Turn on/off the great room lights", turn on or off all the lights in the great room

automations:
  - starters:
      - type: assistant.event.OkGoogle
        eventData: query
        is: Turn on the great room lights
    actions:
      type: device.command.OnOff
      on: true
      devices:
        - Dinning Room
        - Kitchen
        - Living Room

  - starters:
      - type: assistant.event.OkGoogle
        eventData: query
        is: Turn off the great room lights
    actions:
      type: device.command.OnOff
      on: false
      devices:
        - Dinning Room
        - Kitchen
        - Living Room&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jul 2023 06:12:56 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Multiple-automations-in-single-script-sometimes-breaks-when-using-assistant/m-p/450615#M19852</guid>
      <dc:creator>jwl_</dc:creator>
      <dc:date>2023-07-21T06:12:56Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple automations in single script sometimes breaks when using `assistant.event.OkGoogle` sta</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Multiple-automations-in-single-script-sometimes-breaks-when-using-assistant/m-p/456995#M20229</link>
      <description>&lt;P&gt;I'm having the same issues. I have a complex routine that won't work anymore because it has 46 actions. I've been trying to turn it into script, because I rely heavily on it. My "ok google" and any broadcast command will not work. It seems to just skip over those actions completely. The lights I have scheduled mostly work, but the other commands will not fire.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 23 Jul 2023 06:46:14 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Multiple-automations-in-single-script-sometimes-breaks-when-using-assistant/m-p/456995#M20229</guid>
      <dc:creator>Bethany07</dc:creator>
      <dc:date>2023-07-23T06:46:14Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple automations in single script sometimes breaks when using `assistant.event.OkGoogle` sta</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Multiple-automations-in-single-script-sometimes-breaks-when-using-assistant/m-p/458842#M20353</link>
      <description>&lt;P&gt;Same issue here with exact same formatting&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jul 2023 04:43:24 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Multiple-automations-in-single-script-sometimes-breaks-when-using-assistant/m-p/458842#M20353</guid>
      <dc:creator>jcsosia</dc:creator>
      <dc:date>2023-07-26T04:43:24Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple automations in single script sometimes breaks when using `assistant.event.OkGoogle` sta</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Multiple-automations-in-single-script-sometimes-breaks-when-using-assistant/m-p/459189#M20396</link>
      <description>&lt;P&gt;Here's an example of a multi-"OkGoogle" automation that doesn't seem to respond to each trigger. It's supposed to house all of my possible control functions for the blinds in my living room. Scenes are setup in Switchbot, and those scenes are visible and executable from Google Home. Before Script Editor (SE), I had separate automations for each of these, but I thought with SE I could bundle them up into one. Am I misunderstanding the functionality of SE and it's capabilities?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;metadata:
  name: Blinds Control
  description: All controls for the blinds

automations:

  # Close them
  - starters:
      - type: assistant.event.OkGoogle
        eventData: query
        is: close the blinds

    actions:
      - type: device.command.ActivateScene
        activate: true
        devices: Night Blinds

    # Open them
  - starters:
      - type: assistant.event.OkGoogle
        eventData: query
        is: open the blinds

    actions:
      - type: device.command.ActivateScene
        activate: true
        devices: Open Blinds

    # Dim them
    # Close them halfway
  - starters:
      - type: assistant.event.OkGoogle
        eventData: query
        is: dim the blinds

    actions:
      - type: device.command.ActivateScene
        activate: true
        devices: Dim Blinds&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jul 2023 18:46:25 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Multiple-automations-in-single-script-sometimes-breaks-when-using-assistant/m-p/459189#M20396</guid>
      <dc:creator>jcsosia</dc:creator>
      <dc:date>2023-07-26T18:46:25Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple automations in single script sometimes breaks when using `assistant.event.OkGoogle` sta</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Multiple-automations-in-single-script-sometimes-breaks-when-using-assistant/m-p/460757#M20474</link>
      <description>&lt;P&gt;It looks like it is not only this command :&amp;nbsp;assistant.command.OkGoogle&lt;BR /&gt;I experience the same issue with all the commands using the assistant :&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;assistant.command.Broadcast&lt;BR /&gt;assistant.command.OkGoogle&lt;BR /&gt;assistant.event.OkGoogle&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 29 Jul 2023 07:42:33 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Multiple-automations-in-single-script-sometimes-breaks-when-using-assistant/m-p/460757#M20474</guid>
      <dc:creator>NestJoke</dc:creator>
      <dc:date>2023-07-29T07:42:33Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple automations in single script sometimes breaks when using `assistant.event.OkGoogle` sta</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Multiple-automations-in-single-script-sometimes-breaks-when-using-assistant/m-p/463180#M20647</link>
      <description>&lt;P&gt;I just wanted to add that when I try to use assistant.command.OkGoogle as a starter to kick off a basic automation (I simply want to say "I am in bed"&amp;nbsp; have it read back basic information conditional on stuff like the time, just to get familiar with building the script where I will build on this later) and the script editor will not recognize the command and won't validate.&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the end, I need to prompt Google Home to start the automation, and want to do so via voice, and not have to use my device to start it.&amp;nbsp; But I'm lost as to how to get the automation to start.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Aug 2023 09:05:07 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Multiple-automations-in-single-script-sometimes-breaks-when-using-assistant/m-p/463180#M20647</guid>
      <dc:creator>AHLEditor</dc:creator>
      <dc:date>2023-08-02T09:05:07Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple automations in single script sometimes breaks when using `assistant.event.OkGoogle` sta</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Multiple-automations-in-single-script-sometimes-breaks-when-using-assistant/m-p/467319#M20921</link>
      <description>&lt;P&gt;So weird! Maybe try this as the starter type:&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;assistant.event.OkGoogle&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;Using "event" instead of "command" may help? I also know that Script Editor is very picky about indents&lt;/P&gt;</description>
      <pubDate>Thu, 10 Aug 2023 19:42:04 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Multiple-automations-in-single-script-sometimes-breaks-when-using-assistant/m-p/467319#M20921</guid>
      <dc:creator>jcsosia</dc:creator>
      <dc:date>2023-08-10T19:42:04Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple automations in single script sometimes breaks when using `assistant.event.OkGoogle` sta</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Multiple-automations-in-single-script-sometimes-breaks-when-using-assistant/m-p/470736#M21167</link>
      <description>&lt;P&gt;Any update on this topic by any chance ?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Aug 2023 08:07:48 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Multiple-automations-in-single-script-sometimes-breaks-when-using-assistant/m-p/470736#M21167</guid>
      <dc:creator>NestJoke</dc:creator>
      <dc:date>2023-08-18T08:07:48Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple automations in single script sometimes breaks when using `assistant.event.OkGoogle` sta</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Multiple-automations-in-single-script-sometimes-breaks-when-using-assistant/m-p/477351#M21793</link>
      <description>&lt;P&gt;&lt;STRONG&gt;I've got same problem...&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;A href="https://www.googlenestcommunity.com/t5/Home-Automation/Google-assistant-can-run-only-first-script-from-Google-home-script-editor/m-p/476304/emcs_t/S2h8ZW1haWx8YWNjZXB0X2FzX3NvbHV0aW9uX3JlbWluZGVyfExNNVlZNEUzTkxBQUpDfDQ3NjMwNHxPVEhFUlN8aEs#M21727" target="_self"&gt;(Google assistant can run only first script...)&lt;/A&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Any updates?&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Sep 2023 18:19:51 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Multiple-automations-in-single-script-sometimes-breaks-when-using-assistant/m-p/477351#M21793</guid>
      <dc:creator>martin_macikk</dc:creator>
      <dc:date>2023-09-05T18:19:51Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple automations in single script sometimes breaks when using `assistant.event.OkGoogle` sta</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Multiple-automations-in-single-script-sometimes-breaks-when-using-assistant/m-p/477366#M21794</link>
      <description>&lt;P&gt;I haven't tested recently. But unfortunately I don't believe so. This is probably a large internal undertaking and this is preview. They did just release a significant update to the scripting preview, but this issue doesn't seem to be included as a fix. Maybe we will see an update around October 4th. &lt;span class="lia-unicode-emoji" title=":crossed_fingers:"&gt;🤞&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Sep 2023 18:57:53 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Multiple-automations-in-single-script-sometimes-breaks-when-using-assistant/m-p/477366#M21794</guid>
      <dc:creator>Alphabet</dc:creator>
      <dc:date>2023-09-05T18:57:53Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple automations in single script sometimes breaks when using `assistant.event.OkGoogle` sta</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Multiple-automations-in-single-script-sometimes-breaks-when-using-assistant/m-p/479842#M22010</link>
      <description>&lt;P&gt;i guess not&lt;/P&gt;</description>
      <pubDate>Tue, 12 Sep 2023 09:07:32 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Multiple-automations-in-single-script-sometimes-breaks-when-using-assistant/m-p/479842#M22010</guid>
      <dc:creator>NestJoke</dc:creator>
      <dc:date>2023-09-12T09:07:32Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple automations in single script sometimes breaks when using `assistant.event.OkGoogle` sta</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Multiple-automations-in-single-script-sometimes-breaks-when-using-assistant/m-p/481714#M22209</link>
      <description>&lt;P&gt;Same problem here too. I created the simplest of automations, no other starters and very simple commands, and confirmed that only the first instance of the okGoogle starter will work.&lt;/P&gt;</description>
      <pubDate>Sun, 17 Sep 2023 22:48:20 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Multiple-automations-in-single-script-sometimes-breaks-when-using-assistant/m-p/481714#M22209</guid>
      <dc:creator>mattcoz</dc:creator>
      <dc:date>2023-09-17T22:48:20Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple automations in single script sometimes breaks when using `assistant.event.OkGoogle` sta</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Multiple-automations-in-single-script-sometimes-breaks-when-using-assistant/m-p/481953#M22233</link>
      <description>&lt;P&gt;I have the same problem :&lt;/P&gt;&lt;P&gt;- assistant.event.OkGoogle&lt;/P&gt;&lt;P&gt;- assistant.command.OkGoogle&lt;/P&gt;&lt;P&gt;- assistant.command.Broadcast&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;... don't work il you have a multiple conditions script needing "-name: ... ".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;All other command or event work fine in that case.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We have to wait october the 4th ??&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Sep 2023 18:54:29 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Multiple-automations-in-single-script-sometimes-breaks-when-using-assistant/m-p/481953#M22233</guid>
      <dc:creator>Hollen_ar_mor</dc:creator>
      <dc:date>2023-09-18T18:54:29Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple automations in single script sometimes breaks when using `assistant.event.OkGoogle` sta</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Multiple-automations-in-single-script-sometimes-breaks-when-using-assistant/m-p/481966#M22235</link>
      <description>&lt;P&gt;Same problem here as well. I wanted to use a single google assistant phrase to trigger different sets of lights based on time of day but this issue prevents me from achieving that &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Sep 2023 19:43:28 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Multiple-automations-in-single-script-sometimes-breaks-when-using-assistant/m-p/481966#M22235</guid>
      <dc:creator>adamspir</dc:creator>
      <dc:date>2023-09-18T19:43:28Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple automations in single script sometimes breaks when using `assistant.event.OkGoogle` sta</title>
      <link>https://www.googlenestcommunity.com/t5/Home-Automation/Multiple-automations-in-single-script-sometimes-breaks-when-using-assistant/m-p/489312#M22805</link>
      <description>&lt;P&gt;Hello ?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Its been 2 months now , do you have an update ?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Oct 2023 08:01:57 GMT</pubDate>
      <guid>https://www.googlenestcommunity.com/t5/Home-Automation/Multiple-automations-in-single-script-sometimes-breaks-when-using-assistant/m-p/489312#M22805</guid>
      <dc:creator>NestJoke</dc:creator>
      <dc:date>2023-10-09T08:01:57Z</dc:date>
    </item>
  </channel>
</rss>

