The Schedule trigger runs the operation, at monthly basis.
onScheduledMonth([], 0, 0, ()=>{
1
2 3
});
1: Date
2: Hour
3: Minutes
(Example 1)
5th of each month, at 18:12.
onScheduledMonth([5],18,12,()=>{
});
(Example 2)
5th and 25th of each month, at 18:12.
onScheduledMonth([5,25],18,12,()=>{
});