Skip to content

Not finding assigned issues. #15

Description

@justinabrahms

Hi there. I've had this working at some point, but something seems to be up b/c it's not working any longer. Not clear what, if anything, changed on my end.

Here's my config:

(use-package org-github-issues
  :straight (org-github-issues :host github :repo "iensu/org-github-issues")
  :defer t
  :config
  (setq org-github-issues-user "justinabrahms" ;; Specify Github user
        github-repositories '("ebay/goose") ;; My repositories
        org-github-issues-org-file "~/docs/github-issues.org" ;; My org file
        org-github-issues-tags '("github" "triage") ;; Always add these labels
        org-github-issues-auto-schedule "+0d" ;; Enable automatic scheduling
        org-github-issues-filter-by-assignee t ;; Enable filter by assignee
        org-github-issues-headline-prefix t) ;; Prefix all headlines with repository name

  ;; When idle for an hour loop over my projects and sync
  (mapcar (lambda (r)
            (run-with-idle-timer 3600 t (lambda () (org-github-issues-sync-issues r))))
          github-repositories))

When I do an M-x org-github-issues-sync-issues, it tells me:

No open issues found in repository https://github.com/ebay/goose

which is definitely not true.

I have validated my personal access token works just fine with

curl -H "Authorization: token my-personal-access-token-here" https://api.github.com/users/codertocat -I

I'd love any debugging steps you may have. Especially ones that expose raw api calls to the github web service.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

Labels

No labels
No labels

Projects

No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions