Skip to content

Commit

Permalink
feat: partial enable
Browse files Browse the repository at this point in the history
  • Loading branch information
gitcoindev committed Nov 8, 2023
1 parent 69f01d4 commit 03ca123
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,11 @@ async function main() {
const allProjectIssues: Issue[] = [];

console.log(projectUrls);
/*

// for each project URL
for (let projectUrl of projects.urls) {
for (let projectUrl of projectUrls) {
console.log(projectUrl);
/*
// get owner and repository names from project URL
const [ownerName, repoName] = getRepoCredentials(projectUrl);
// get all project issues (opened and closed)
Expand Down Expand Up @@ -158,11 +160,12 @@ async function main() {
console.log(`Created: ${createdIssue.data.html_url} (${projectIssue.html_url})`);
}
}
*/
}

// close missing issues
await forceCloseMissingIssues(devpoolIssues, allProjectIssues);
*/

} catch (err) {
console.log(err);
}
Expand Down

0 comments on commit 03ca123

Please sign in to comment.