feat(ci): sort by oldest updated and bump MAX_ISSUES to 100

This commit is contained in:
Ashley Mensah
2026-04-30 11:53:40 +02:00
parent 42e1f19689
commit 5bf17023fb
2 changed files with 2 additions and 2 deletions

View File

@@ -39,7 +39,7 @@ async function paginate(url, max) {
console.log(`Fetching up to ${maxIssues} open issues from ${repo}...`);
const issues = await paginate(
`https://api.github.com/repos/${repo}/issues?state=open&sort=updated&direction=desc`,
`https://api.github.com/repos/${repo}/issues?state=open&sort=updated&direction=asc`,
maxIssues
);