I am trying to figure out how to accomplish this in script runner for jira cloud, but we have a scheduled job that we need to run every other wednesday.
I don't see a way to accomplish this natively in script runner.
Hi @Jeffrey Bistrong , correct, there is no biweekly option. The Cloud scheduler only offers weekly days or day-of-month, no cron, so a true 14-day cadence can't be set in the dialog. You add it in the script instead:
One thing not to do: don't base the alternation on the plain week-of-year number, because 53-week years make it stutter for two weeks across New Year. Counting whole days since a fixed anchor date and running when that count divides evenly by 14 is the version that never drifts.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.