Last active
March 29, 2019 04:50
-
-
Save disjukr/bf4906df291eef02848a547603a1cd1f to your computer and use it in GitHub Desktop.
지라 즐겨찾기 필터 모음
This file contains hidden or 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
# 나에게 할당된 이슈 | |
assignee = currentUser() AND statusCategory != Done | |
# 내 거지만 아직 진행중이진 않은 이슈 | |
assignee = currentUser() AND statusCategory = "To Do" | |
# 내 이슈중 3개월 넘게 업데이트 안 된 이슈 | |
assignee = currentUser() AND statusCategory != Done AND updatedDate < startOfMonth(-3m) | |
# 내가 진행중인 이슈 | |
assignee = currentUser() AND statusCategory = "In Progress" | |
# 내가 팔로업 중인 이슈 | |
watcher = currentUser() AND statusCategory != Done AND assignee != currentUser() ORDER BY updatedDate | |
# 내가 올해 해결한 이슈 | |
assignee = currentUser() AND statusCategory = Done AND resolutiondate > startOfYear() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
assignee != chan
이 남아있네여 ㅋㅋㅋ