Skip to content

Instantly share code, notes, and snippets.

@arrdem
Created June 16, 2020 00:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arrdem/db8720cbe825af2557bd8efa654fb8b8 to your computer and use it in GitHub Desktop.
Save arrdem/db8720cbe825af2557bd8efa654fb8b8 to your computer and use it in GitHub Desktop.
---
filters:
- name: Assigned, Reported, Commented and not resolved
jql: |
(assignee = currentUser() OR reporter = currentUser() OR comment ~ currentUser()) AND status != Resolved ORDER BY updated DESC
- name: My open issues
jql: |
assignee = currentUser() AND resolution = Unresolved order by updated DESC
- name: My reported issues
jql: |
reporter = currentUser() order by created DESC
- name: My oncall queue
jql: |
resolution = Unresolved AND assignee is EMPTY AND labels in (oncall, onduty) ORDER BY created DESC
- name: My current sprint
jql: |
assignee = currentUser() AND resolution = Unresolved AND Sprint in openSprints() ORDER BY updated DESC
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment