From 7eb520f67871d64ced03a21a67f0e3412b4d6211 Mon Sep 17 00:00:00 2001 From: Mikhail Skorzhinskii Date: Thu, 12 Dec 2019 23:50:19 +0100 Subject: [PATCH] examples: add org-jira integration example --- examples.org | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/examples.org b/examples.org index c3df94d..21acad1 100644 --- a/examples.org +++ b/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