I have the following code to run the code every Monday at 9am
. But I want to run the code every 30
minutes starting from 9 am
until 12 pm
ScriptApp.newTrigger('myFunction').timeBased().everyWeeks(1).onWeekDay(ScriptApp.WeekDay.MONDAY).atHour(9).create()
Can someone help me how can I be doing this with trigger?