Skip to content

Commit

Permalink
Add issues with waiting-for-code-owners label to the weekly report
Browse files Browse the repository at this point in the history
  • Loading branch information
LucaLanziani committed Jun 3, 2024
1 parent 7cc24ff commit 1b6b990
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/scripts/generate-weekly-report.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,10 @@ async function getIssuesData({octokit, context}) {
filterPrs: true,
alias: "issuesSponsorNeeded",
},
"waiting-for-code-owners": {
filterPrs: true,
alias: "issuesCodeOwnerNeeded",
}
};

const issuesNew = await getNewIssues({octokit, context});
Expand Down Expand Up @@ -151,6 +155,11 @@ async function getIssuesData({octokit, context}) {
count: 0,
data: []
},
issuesCodeOwnerNeeded: {
title: "New isseus needing code owners",
count: 0,
data: []
}
}

// add new issues
Expand Down

0 comments on commit 1b6b990

Please sign in to comment.