checking for weekday in workflow
I have the following workflow schedule
I want to only send out this mail Mon-Fri. How do I check that?
schedule rule daily in progress check
daily at 08:30:00 [issue.State == {In Progress} && issue.updated < now - 1 day] {
issue.Assignee.notify("Issue #" + issue.getId() + " not updated", "Issue #" + issue.getId() + " is in In Progress but has not been updated in the last 24 hours.");
}
I want to only send out this mail Mon-Fri. How do I check that?
1 comment
Sort by
Date
Votes
Please complete "cron: " by Ctrl+Space instead of "daily" and use the expression cron: 0 30 8 ? * MON-FRI. More option you can find in the official documentation.
Please sign in to leave a comment.