Searching for issues with repeatings
Basics
To search issues with repeating go to Jira issue navigator and use JQL query:
codedoers.repeating.nextOccurrenceTime is not null
Sometimes it is possible that issue with repeating has empty nextOccurrenceTime. This occurs when:
recurrence rule is not valid and nextOccurrenceTime can't be calculated
repeating ends and issue should not be repeated anymoreÂ
Then you can use following JQL to search all issues with repeating (including invalid rules and completed recursion):
codedoers.repeating.rule is not empty
All repeatings are defined as RFC 2445 recurrence rules, for exampleÂ
rRule = "INTERVAL=5;FREQ=MONTHLY;BYMONTHDAY=1"Â
rRule = "INTERVAL=1;FREQ=DAILY"
The rRule property can be used to search repeatings by it recurrence details
To search issues with repeating that failed during last execution go to Jira issue navigator and use JQL query:
codedoers.repeating.errors is not empty
More examples
JQL | Result |
---|---|
search all issues with repeating with valid next occurrence date | |
search all issues with repeating. Including invalid rules and completed recursion - with empty codedoers.repeating.nextOccurrenceDate | |
as above, but the results are sorted ascending by the next occurrence date | |
search issues with repeating that occurs after now and until the end of week | |
search all monthly repeatings | |
search all daily repeatings | |
search all repeatings with intervel equals to 5 (interval is defined by Repeats every fields. see this page for details) | |
search all montlhy repeatings with interval equals to 5 | |
search all issues which are repeated by repeating issues add-on | |
search all issues which are repeated by ISSUEKEY-1 | |
search all issues which are repeated by ISSUEKEY-11 and was created after 2017-07-16 17:05 | |
search issues with repeating that failed during last execution |