Created
June 16, 2020 00:59
-
-
Save arrdem/db8720cbe825af2557bd8efa654fb8b8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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