Skip to content

Commit

Permalink
server: improve testmerge worker 10
Browse files Browse the repository at this point in the history
  • Loading branch information
Bizzonium committed Oct 6, 2024
1 parent 2c050bd commit 5949128
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/testmerge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
per_page: 100
});
const labeledPRs = [];
const sortedPRsASC = pullRequests.sort((a, b) => a.createdAt.localeCompare(b.createdAt));
const sortedPRsASC = pullRequests.sort((a, b) => a.created_at.localeCompare(b.created_at));
for (const pr of sortedPRsASC) {
if (pr.labels.some(label => label.name === label_needed)) {
console.log(`PR ${pr.title}`);
Expand Down

0 comments on commit 5949128

Please sign in to comment.