Device Automation TTS Friendly name

I’m very new to HA, I have a few automation setup and working, but I just added my washer/dryer and trying to setup a Google tts to announce when they are complete… below is what I have configured. but I can’t figure out how to get it to announce the friendly name any suggestions

alias: LG Washer/Dryer Completed
description: ""
trigger:
  - type: turned_on
    platform: device
    device_id: 95c0045e0f3d27cdb17fb8deea2b2f89
    entity_id: binary_sensor.front_load_washer_wash_completed
    domain: binary_sensor
    enabled: true
  - type: turned_on
    platform: device
    device_id: 39cfe8f9247a4904279717494098acf6
    entity_id: binary_sensor.dryer_dry_completed
    domain: binary_sensor
condition: []
action:
  - service: tts.google_say
    data:
      cache: false
      entity_id: media_player.master_house
      message: "{{ trigger.entity_id }} is complete, it's time to check them,."
mode: single

Take a look at trigger ids. Then you don’t have to use a template for the friendly name.