Skip to content

Commit

Permalink
server: improve testmerge worker 8
Browse files Browse the repository at this point in the history
  • Loading branch information
Bizzonium committed Oct 6, 2024
1 parent 242cf14 commit eff760a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/testmerge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,14 @@ jobs:
repo: context.repo.repo,
state: 'open',
sort: 'updated',
direction: 'desc'
direction: 'desc',
per_page: 100
});
const labeledPRs = [];
for (const pr of pullRequests) {
console.log(`PR ${pr.title}`);
if (pr.labels.some(label => label.name === label_needed)) {
console.log(`PR ${pr.title}`);
const { data: prInfo } = await github.rest.pulls.get({
owner: context.repo.owner,
repo: context.repo.repo,
Expand Down

0 comments on commit eff760a

Please sign in to comment.