CodeNewbie Community 🌱

Robert Andrews
Robert Andrews

Posted on

How to get my own forked-repo GitHub Issues in VS Code?

I forked tidythemes/blankslate to robertandrews/blankstrap.

I created new Issues for myself, for my own fork...

Image description

But, in VS Code, in the GitHub extension panel, I am instead seeing the Issues for the original blankslate...

Image description

Source Control Repositories shows...

Image description

Branch switcher shows...

Image description

Switching to another (ie. origin/master Remote) does not result in my Issues showing.

What must I do to get my own Issues visible?

Top comments (2)

Collapse
 
robertandrews profile image
Robert Andrews

The only way I can get them to display so far is by editing settings.json to add a new githubIssues.queries item:

    {
      "label": "Test Issues",
      "query": "state:open repo:robertandrews/blankstrap sort:updated-desc"
    }
Enter fullscreen mode Exit fullscreen mode

Then, they show. But this, of course, means this is visible no matter what I open in VS Code.

Collapse
 
robertandrews profile image
Robert Andrews

Developer of the VS Code GitHub Issues extension suggests it may be a bug.