Skip to content

Instantly share code, notes, and snippets.

@shrwnsan
Last active November 16, 2016 07:01
Show Gist options
  • Save shrwnsan/66d656a752ec1b7911ccf1fd6de31a9f to your computer and use it in GitHub Desktop.
Save shrwnsan/66d656a752ec1b7911ccf1fd6de31a9f to your computer and use it in GitHub Desktop.
JIRA Filters

JIRA Filters

Watched issues not assigned to me

issue in watchedissues() AND assignee != currentuser() ORDER BY assignee ASC

Watched issues not assigned to me that are Done

issue in watchedissues() AND assignee != currentuser() AND resolution = Done ORDER BY assignee ASC

Watched issues not assigned to me that are Unresolved

issue in watchedissues() AND assignee != currentuser() AND resolution = Unresolved ORDER BY assignee ASC

Source

Based via http://mediatribe.net/en/node/108

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment