Skip to main content

Hey everyone,

Is it possible to turn automations on and off from a script?

I’m trying to turn them all off automatically during weekends, so messages don’t show up until monday. My caveman way would be something like


const d = new Date();

let day = d.getDay();


if (day !== 0 && day !== 6) {

//Turn all automations off

}


Would that make any sense? Or would it be better if I leave my automations on forever and try to script them in order to only activate on weekdays?


Thanks in advance

Welcome to the community, @Gerardo_Hormazabal! :grinning_face_with_big_eyes: Automations can only be turned on/off via the UI at this time. However, there are some early rumblings about a beta for conditional automation branching, which would allow specific parts of automations to only run under certain conditions. Once that is finalized, what you want should be doable, though perhaps not exactly as you outlined.


Welcome to the community, @Gerardo_Hormazabal! :grinning_face_with_big_eyes: Automations can only be turned on/off via the UI at this time. However, there are some early rumblings about a beta for conditional automation branching, which would allow specific parts of automations to only run under certain conditions. Once that is finalized, what you want should be doable, though perhaps not exactly as you outlined.


Thank you very much for your quick response


Welcome to the community, @Gerardo_Hormazabal! :grinning_face_with_big_eyes: Automations can only be turned on/off via the UI at this time. However, there are some early rumblings about a beta for conditional automation branching, which would allow specific parts of automations to only run under certain conditions. Once that is finalized, what you want should be doable, though perhaps not exactly as you outlined.



Yep, I volunteered, but haven’t seen any changes just yet 🙏


Reply