mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 12:31:59 -08:00
Update update-set-implementation-lists.yml
This commit is contained in:
parent
6e7b74205f
commit
88e687c72b
1 changed files with 3 additions and 2 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue