Skip to content

Commit

Permalink
[chore] Add issues with waiting-for-code-owners label to the weekly r…
Browse files Browse the repository at this point in the history
…eport (open-telemetry#33330)

**Description:** 

Added the list of issues with the `waiting-for-code-owner` to the weekly
report

**Link to tracking Issue:** 

open-telemetry#32490

**Testing:**

Check the testing_actions.md file

**Documentation:**

I've added the docs/testing_actions.md file to describe how to test the
new functionality

---------

Co-authored-by: Pablo Baeyens <[email protected]>
  • Loading branch information
LucaLanziani and mx-psi authored Jun 6, 2024
1 parent 4322a38 commit 314b731
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: false,
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: "Issues and PRs that need code owner review",
count: 0,
data: []
}
}

// add new issues
Expand Down

0 comments on commit 314b731

Please sign in to comment.