Skip to content

Instantly share code, notes, and snippets.

@disjukr
Last active March 29, 2019 04:50
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 disjukr/bf4906df291eef02848a547603a1cd1f to your computer and use it in GitHub Desktop.
Save disjukr/bf4906df291eef02848a547603a1cd1f to your computer and use it in GitHub Desktop.
지라 즐겨찾기 필터 모음
# 나에게 할당된 이슈
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()
@AiOO
Copy link

AiOO commented Mar 9, 2017

assignee != chan 이 남아있네여 ㅋㅋㅋ

@disjukr
Copy link
Author

disjukr commented Apr 30, 2017

엌ㅋㅋㅋㅋㅋㅋ 그러네여

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