forked from ethereum/remix-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-qa-doc.js
78 lines (74 loc) · 1.98 KB
/
build-qa-doc.js
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
const fs = require('fs')
let value = fs.readFileSync('./done.json')
value = JSON.parse(value)
const inDone = value.data.search.edges[0].node.project.columns.edges[0].node.cards.edges
let data = ''
console.log(inDone.length, 'issues/Prs\n')
data = inDone.length + ' issues/Prs\n'
for (let card of inDone) {
if (card.node.content.url && card.node.content.merged !== false) {
data += `${card.node.content.title} - ${card.node.content.url}\n`
}
}
fs.writeFileSync('./done.txt', data)
console.log('done.txt updated')
/*
- go to https://docs.github.com/en/graphql/overview/explorer
- set the correct project id
- run the query (be careful, this only returns the first 100 elements)
- save the JSON content as done.json
- run this script
- get the result in the file done.txt
/*
{
search(type: REPOSITORY, query: "remix-project", first: 1) {
edges {
node {
__typename
... on Repository {
owner {
id
}
name
project(number: 31) {
number
name
columns(last: 1) {
edges {
node {
name
cards(first: 100) {
edges {
cursor
node {
id
note
state
content {
... on Issue {
url
id
number
title
}
... on PullRequest {
url
id
number
title
merged
}
}
}
}
}
}
}
}
}
}
}
}
}
}
*/