examples: add org-jira integration example
This commit is contained in:
parent
7032f10c93
commit
7eb520f678
1 changed files with 14 additions and 0 deletions
14
examples.org
14
examples.org
|
|
@ -211,6 +211,20 @@ Saving org-ql search:
|
|||
(org-icalendar-export-to-ics))
|
||||
#+end_src
|
||||
|
||||
* Get all in progress tasks for [[https://github.com/ahungry/org-jira][org-jira]] users
|
||||
|
||||
For best results, inject it to bigger agenda view for your work items.
|
||||
|
||||
#+begin_src emacs-lisp
|
||||
(org-ql-search
|
||||
(org-agenda-files)
|
||||
'(and (tags "work")
|
||||
(and (property "assignee" "your-jira-username")
|
||||
(todo "PROG")))
|
||||
:super-groups
|
||||
'((:name "In progress" :order 1 :todo "PROG")))
|
||||
#+end_src
|
||||
|
||||
* COMMENT Code :noexport:
|
||||
:PROPERTIES:
|
||||
:TOC: ignore
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue