muesli / markscribe

Your personal markdown scribe with template-engine and Git(Hub) & RSS powers 📜
MIT License
366 stars 40 forks source link

Do not include archived repositories to recentRepos #52

Open dolfinus opened 2 years ago

dolfinus commented 2 years ago

recentRepos includes all repos owned by the user. But it also returns repositories which were archived, which is quite strange.

I've added isArchived=False filter to this function.

muesli commented 2 years ago

Have you actually tried this change out? I don't think this could work, as the isArchived variable isn't evaluated anywhere. It's passed to recentReposQuery, but not actually used in the query. We would probably have to manually filter the repositories, as I also don't think we can use isArchived quite like isFork for this query.

dolfinus commented 2 years ago

Fixed

dolfinus commented 1 year ago

Any updates?