I would like to receive the results of a filter subscription every 2 weeks/14 days at a specific time. How can I configure my filter subscription to do this?
Hi Geoff,
Unfortunately, cron expressions do not natively support the "every two weeks" time period.
There are workarounds that might work for certain scenarios, but I'm afraid none of them would work for filter subscriptions.
However, there are very convenient and free Cron Expression Generators online that might help you get the alternative that best suits your needs:
Best regards.
I'd like this feature as well. Please add it as a feature request to support every other week in your list of supported non-cron options.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Can we get an update on the feature request of providing subscription reports "every two weeks"? The reason is so important is we run our sprints in two-week cadence, this would allow us to send automated reports on a timely basis with no manual interaction.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I hope you are talking about Jira Filter Subscription, here is cron expression that will satisfy your need.
0 0 0 1,15 * ?
This expression run your subscription on 00:00 hours every 1st and 15th of every month.
Hopefully this helps.
If you want to learn more about cron expressions here is link - https://confluence.atlassian.com/jiracorecloud/constructing-cron-expressions-for-a-filter-subscription-765593786.html
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am, but this doesn't answer my question. The 1st and 15th is not what I'm looking for. I'm looking for every other week/every 14 days/every 2 weeks and not set calendar days.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can do something like,
To run script every Monday, at 00:00 hours
0 0 0 ? * MON
To run script on 1st and 3rd Monday of every month at 00:00 hours
0 0 0 ? * 2#1,2#3
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Running a script on 1st and 3rd weekday of every month is not always going to match properly, e.g. in June 2021, there are 5 Wednesdays (June 2./9./16./23./30.). In this case, June 30 would be skipped, which is incorrect, since it's 14 days after June 16.
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.