remix-project mirror
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
remix-project/build-changelog.js

98 lines
2.9 KiB

const fs = require('fs')
let value = fs.readFileSync('./change-log.json')
value = JSON.parse(value)
const inDone = value.data.search.edges[0].node.project.columns.edges[0].node.cards.edges
let data = ''
const prCount = inDone.filter((card) => {
return card.node.content.url
}).length
console.log(prCount, 'PRs found!\n')
data = prCount + ' PRs found!\n\n'
for (let card of inDone) {
if (card.node.content.url && card.node.content.merged) {
data += ` - [${card.node.content.title}](${card.node.content.url}) (@${card.node.content.author.login})\n`
data += ` participants: (${card.node.content.participants.edges.map((p) => { return ` @${p.node.login}` })})`
data += '\n\n'
}
}
2 years ago
console.log('change-log.txt updated')
fs.writeFileSync('./change-log.txt', data)
/*
- Go to https://docs.github.com/en/graphql/overview/explorer
- Set the correct project id
- Run the below mentioned query (be careful, this only returns the first 100 elements)
- Save the JSON content as change-log.json
- Run this script i.e. build-changelog.js
- Use the result from the file change-log.txt to write changelog on Github release
2 years ago
*/
/*
{
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 PullRequest {
2 years ago
participants (last: 100) {
edges {
node {
id
login
}
}
}
author {
login
}
assignees (last: 100) {
edges {
node {
id
login
}
}
}
url
merged
id
number
title
}
}
}
}
}
}
}
}
}
}
}
}
}
}
2 years ago
*/