I have a few TTS automations to announce when triggers happen. All of a sudden they all stopped saying their announcement. I still get a tone to indicate an announcement is coming, but then nothing.
Here is the YAML for my talking clock, that now only ticks once a minute, does not say anything:
alias: Say Time
description: ""
triggers:
- trigger: time_pattern
hours: "*"
minutes: /1
seconds: "10"
conditions: []
actions:
- action: tts.cloud_say
data:
cache: false
entity_id: media_player.kennel_speaker
message: The time now is {{ now().strftime("%H:%M") }}
mode: single