Skip to content

Commit

Permalink
whoops
Browse files Browse the repository at this point in the history
  • Loading branch information
ramiAbdou committed Sep 17, 2024
1 parent 9d1256c commit e89366c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/scripts/manage-issues.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ module.exports = async function manageIssues({ context, github }) {
console.log(`Processing ${issues.length} open issues.`);

for (const issue of issues) {
await processIssue(issue, context);
await processIssue({ context, github, issue });
}
};

Expand All @@ -32,7 +32,7 @@ module.exports = async function manageIssues({ context, github }) {
*
* @param {Object} issue - GitHub issue to check.
*/
async function processIssue(issue, context) {
async function processIssue({ context, github, issue }) {
console.log(`Processing issue #${issue.number}.`);

const now = Date.now();
Expand Down

0 comments on commit e89366c

Please sign in to comment.