Skip to content

Instantly share code, notes, and snippets.

@jbl0ndie
Last active January 17, 2023 11:06
Show Gist options
  • Save jbl0ndie/58a618fb800d6b34eb9011fe4c1d20a4 to your computer and use it in GitHub Desktop.
Save jbl0ndie/58a618fb800d6b34eb9011fe4c1d20a4 to your computer and use it in GitHub Desktop.
Jira JQL for Done and updated today, or updated yesterday, or updated Friday
// Jira JQL Done, updated today, or updated yesterday, or updated Friday
status = Done AND (updated > startofday() OR (updated > -1d) OR (updated <= startofWeek() AND updated > -3d))
// Jira JQL resolved, resolved today, or resolved yesterday, or resolved Friday
status = Done AND (resolved > startofday() OR resolved > -1d OR resolved <= startofWeek() AND resolved > -3d)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment