imfunniee / gitfolio

:octocat: personal website + blog for every github user

Home Page:https://imfunniee.github.io/gitfolio/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

More repositories

gillesheinesch opened this issue · comments

Hi :)

It would be cool if not only the repositories created by the user would be listed but also the repos where you contributed.

Would be a nice feature!

Thanks!

It would be nice feature

This would be a nice feature. I have contributed to several open source projects and I'd very much like them to appear in my portfolio. Thank you for your amazing work!!

How long does it take that you answer on emails? @imfunniee

I think this could simply be done by adding a type=all param to the api request here:

tempRepos = await got(`https://api.github.com/users/${username}/repos?per_page=100&page=${page++}`);
and here
tempRepos = await got(`https://api.github.com/users/${username}/repos?sort=${sort}&order=${order}&per_page=100&page=${page++}`);

Then if we want to separate contributions we could then filter the repos by owner

Then if we want to separate contributions we could then filter the repos by owner

Or we could get them separately with type=owner and type=member

commented

@Monkeyyy11 haven't checked emails in a week.

I think this could simply be done by adding a type=all param to the api request here:

Just checked, this will fix #46 (i.e. show org repos you are a member of) but won't give you repos that you have contributed to.