Merge pull request #638 from arifszn/637

Include forked items in manual GitHub projects
This commit is contained in:
Ariful Alam 2024-08-06 12:26:33 +06:00 committed by GitHub
commit 4e9b79e52f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -76,7 +76,7 @@ const GitProfile = ({ config }: { config: Config }) => {
.map((project) => `+repo:${project}`)
.join('');
const url = `https://api.github.com/search/repositories?q=${repos}&type=Repositories`;
const url = `https://api.github.com/search/repositories?q=${repos}+fork:true&type=Repositories`;
const repoResponse = await axios.get(url, {
headers: { 'Content-Type': 'application/vnd.github.v3+json' },