From 88e687c72ba22d91c3b9db5c60715c69366fe6df Mon Sep 17 00:00:00 2001 From: ExpensiveKoala Date: Fri, 23 Jun 2023 22:51:03 -0700 Subject: [PATCH] Update update-set-implementation-lists.yml --- .github/workflows/update-set-implementation-lists.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update-set-implementation-lists.yml b/.github/workflows/update-set-implementation-lists.yml index 98453b6a959..c0471a1545e 100644 --- a/.github/workflows/update-set-implementation-lists.yml +++ b/.github/workflows/update-set-implementation-lists.yml @@ -51,12 +51,13 @@ jobs: setsData.forEach(set => { let foundIssue = undefined; - issues.forEach(issue => { + issues.every(issue => { if(issue && issue.title && issue.title.startsWith(set[1])) { console.log(`Found tracking issue for ${set[0]} with issue number: ${issue.number}`); foundIssue = issue; - break; + return false; } + return true; }); if(foundIssue !== undefined) { issuesToUpdate.push(foundIssue);