I'm trying to fetch projects from a github repo using PyGithub 1.58.1.
I created those projects manually in browser and I can see them.
But when I see repo.get_projects().totalCount
, it's giving 0
.
and when I try to create a project, it says
github.GithubException.GithubException: 410 {"message": "Projects are disabled for this repository", "documentation_url": "https://docs.github.com/v3/projects"}
But I see repo.has_projects
returning True.
Same issue when using curl
as well.
The PAT I'm using contains all the permissions in the settings page.
What am I missing here?