Skip to content

Instantly share code, notes, and snippets.

@betsydupuis
Created November 8, 2017 15:03
Show Gist options
  • Save betsydupuis/4f87bd0bffc8e08da59b2d124b4bbb8e to your computer and use it in GitHub Desktop.
Save betsydupuis/4f87bd0bffc8e08da59b2d124b4bbb8e to your computer and use it in GitHub Desktop.
Sprint Progress Filters for Jira

Project - 000 - All

project = "Project Name" AND status = Open AND assignee = currentUser() ORDER BY priority

Project - 001 - Backlog

project = "Project Name" AND status = Open AND assignee = currentUser() ORDER BY priority

Project - 101 - Current Sprint

project = "Project Name" AND status != Closed AND Sprint in openSprints() AND assignee = currentUser() ORDER BY priority

Project - 102 - In Progress

project = Communications AND Sprint in openSprints() AND assignee = currentUser() AND status = "In Progress" ORDER BY priority

Project - 103 - Done

project = keith AND status = Done AND Sprint in openSprints() AND assignee = currentUser()

Project - 200 - Closed

project = keith AND status = Closed AND Sprint in openSprints() AND assignee = currentUser()

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