No description
Find a file
Alex Dao c4096e5dbb feat: support setting a default story type
Expose a `org-clubhouse-default-story-type` variable that can be set to
`feature`, `bug`, `chore` or `prompt`. If set to `prompt`, the
org-clubhouse `Create new story` flow will prompt for the story type
each time. If set to any of the other values, the `Create new story`
flow will use that value for all new stories until that variable is set
otherwise.

This also exposes a new interactive function called
`org-clubhouse-set-default-story-type` that prompts users to set the
default story type value.
2018-06-14 17:59:15 -04:00
LICENSE docs: MIT License 2018-03-02 10:44:48 -05:00
org-clubhouse.el feat: support setting a default story type 2018-06-14 17:59:15 -04:00
README.org fix: quelpa install docs 2018-03-28 17:58:58 -04:00

Org-Clubhouse

Simple, unopinionated integration between Emacs's org-mode and the Clubhouse issue tracker

Install

Quelpa

(quelpa '(org-clubhouse
          :fetcher github
          :repo "urbint/org-clubhouse"))

DOOM Emacs

;; in packages.el
(package! org-clubhouse
  :recipe (:fetcher github
           :repo "urbint/org-clubhouse"
           :files ("*")))

;; in config.el
(def-package! org-clubhouse)

Setup

Once setup, you'll need to set two global config vars.

(setq org-clubhouse-auth-token "<your-token>"
      org-clubhouse-team-name "<your-team-name>")