I'd like to be able to create GitHub issues from Emacs using a simple command, e.g.
M-x create-github-issue RET <title> RET <comment> RET
Ideally, the command would default to the current repo when called from a buffer visiting a file that belongs to a git repository.
I checked the repos (ELPA, MELPA, Marmalade); the closest thing I could find is gh, which is a
GitHub API library for Emacs.
It includes gh-issues.el which looks like it could be used as a starting point for implementing such a feature. But since I don't want to reinvent the wheel:
Does anybody have a hand-rolled solution for this that they could share (or know of a package that I missed that implements this functionality)?
bts-github::add-issuefunction, I think it already has what you want, but I have not used this package.