Hive and away from home automation

Hello

I have a hive thermostat and 6 hive TRVs. Plus an automation that turns off the main thermostat when we go to away. It works well but today, after 2 hours something turned it on and we were miles away. Do I need to also add all the TRV to the automation to also turn them off? Any ideas please?

- alias: 'Heating Eco when we are out'
  initial_state: 'on'
  trigger:
    platform: state
    entity_id: group.family
    from: 'home'
    to: 'not_home'

  action:
    - service: CLIMATE.TURN_OFF 
      data:
        entity_id: climate.myhouse_home

Just done some testing and it looks like, even if the thermostat is OFF, if one of the TRVs drops below its temperature, it forces the thermostat to come back on and stay on.

So looks like I need to update the automation to include all the TRVs as well… strange it was fine last winter with just the thermostat.