-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathfetch-contributors.ts
46 lines (39 loc) · 1.05 KB
/
fetch-contributors.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import { promises as fs } from 'fs'
import { ofetch } from 'ofetch'
import { fetchAvatars } from './fetch-avatars'
interface Contributor {
login: string
}
async function fetchContributors(page = 1) {
const collaborators: string[] = []
const data =
(await ofetch<Contributor[]>(
`https://api.github.com/repos/wilfredinni/python-cheatsheet/contributors?per_page=100&page=1`,
{
method: 'get',
headers: {
'content-type': 'application/json',
},
},
)) || []
collaborators.push(...data.map((i) => i.login))
const index = collaborators.indexOf('renovate[bot]')
if (index > -1) collaborators.splice(index, 1)
if (data.length === 100) {
collaborators.push(...(await fetchContributors(page + 1)))
}
return collaborators
}
async function generate() {
const collaborators = await fetchContributors()
await fs.writeFile(
'./contributors/contributors.json',
JSON.stringify(collaborators, null, 2),
'utf8',
)
}
const init = async () => {
await generate()
await fetchAvatars()
}
init()