Nov 27, 2021 11:42 AM
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
Solved! Go to Solution.
Nov 27, 2021 11:58 AM
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.
Nov 27, 2021 11:58 AM
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.
Nov 27, 2021 12:22 PM
Thank you very much for your quick response
Nov 28, 2021 11:18 AM
Yep, I volunteered, but haven’t seen any changes just yet :pray: