Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
ftm-2005 committed Jun 10, 2024
1 parent e9f8ace commit b340c76
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/test-triagerx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,13 @@ jobs:
issue_number
});
if (data.state === "closed") {
if (data.state === "closed" && data.assignee != null) {
issues.push(data);
closed_issues_collected++;
}
}
console.log(issues);
for (let i = 0; i < issues.length; i++) {
let issue = issues[i];
console.log(issue["labels"]);
}

0 comments on commit b340c76

Please sign in to comment.