Pause automation using action in automation

How do I pause an automation using an automation? Is it a call service thingy? I’m not sure how to go about turning off automations. Want to us a helper boolean to pause and unpause rules. Or turn on and off I guess it’s called on this.

You can enable and disable automations like this:

- service: homeassistant.turn_on
  entity_id: automation.your_automation
- service: homeassistant.turn_off
  entity_id: automation.your_automation
1 Like

Got it. Thanks :slight_smile:

1 Like