Workflow Update

This commit is contained in:
Michel Roegl-Brunner 2025-03-24 13:44:38 +01:00
parent 82b7868e9c
commit ca2dd380a1

View File

@ -142,10 +142,6 @@ jobs:
for (const category of categorizedPRs) {
if (category.labels.some(label => prLabels.includes(label))) {
if(category.labels.includes("new script")){
category.notes.push(prNote);
continue;
}
if (category.subCategories && category.subCategories.length > 0) {
const subCategory = category.subCategories.find(sub =>
sub.labels.some(label => prLabels.includes(label))
@ -158,13 +154,10 @@ jobs:
} else {
category.notes.push(prNote);
}
} else {
category.notes.push(prNote);
}
}
}
}
return categorizedPRs;