We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(defmethod gh-issues-issue-req-to-update ((req gh-issues-issue)) (let ((assignee (oref req assignee)) ;; (labels (oref req labels)) (milestone (oref req milestone)) (to-update `(("title" . ,(oref req title)) ("state" . ,(oref req state)) ("body" . ,(oref req body))))) ;; (when labels (nconc to-update `(("labels" . ,(oref req labels) )))) (when milestone (nconc to-update `(("milestone" . ,(oref milestone number))))) (when assignee (nconc to-update `(("assignee" . ,(oref assignee login) )))) to-update))
I noticed that you comemnt out those two pieces of code. But I don't know why?
The text was updated successfully, but these errors were encountered:
Support labeling new issues
f92bc3d
Fix sigma#67
It feels like this was a missed ;todo item. Easy fix, anyway.
;todo
Sorry, something went wrong.
No branches or pull requests
I noticed that you comemnt out those two pieces of code. But I don't know why?
The text was updated successfully, but these errors were encountered: