When scheduling a rule, I can set an interval every 14 days but I can't set the day I want it to execute.
If I use a Cron expression to schedule, you can't specify every 2 weeks (every fortnight).
Is there a way to run the rule every 2 weeks on a Monday at 9am?
In order to do this, you will need to use Cron to run the rule every Monday at 9am and then use a condition to check that it is an even (or odd) week of the year.
Your trigger would like:
You condition (the first thing after the trigger) will look like:
What this is doing is:
The formulae is:
{{#=}}{{#now}}w{{/}} % 2{{/}}
@Nick Menere it didn't work to me, however this comparison works fine:
It checks if the week number is even.
{{#=}}{{now.weekOfYear}}/2 - ROUND({{now.weekOfYear}}/2,0){{/}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Diego Quesada the simple way to validate math expressions is to print them in a comment. For this I recommend to create a rule for tests (that you execute manually or something like that) and add an action to add comment to the issue.
Put the expression above in the comment and run the rule and see the results.
The week number today is even (week #32), so the result should be zero.
If you need more help please share printscreen.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
yes, now run the rule manually in an issue and see the results.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.