Workflow Update

This commit is contained in:
Michel Roegl-Brunner 2025-03-24 14:09:04 +01:00
parent db34131521
commit 3032f2dfbe

View File

@ -136,22 +136,34 @@ jobs:
} }
for (const category of categorizedPRs) { // Check if PR has "new script" label
if (prLabels.includes("new script")) {
// Find the New Script category
const newScriptCategory = categorizedPRs.find(category =>
category.title === "New Scripts" || category.labels.includes("new script"));
if (newScriptCategory) {
newScriptCategory.notes.push(prNote);
}
} else {
// Normal category processing for other PRs
for (const category of categorizedPRs) {
if (category.labels.some(label => prLabels.includes(label))) { if (category.labels.some(label => prLabels.includes(label))) {
if (category.subCategories && category.subCategories.length > 0) { if (category.subCategories && category.subCategories.length > 0) {
const subCategory = category.subCategories.find(sub => const subCategory = category.subCategories.find(sub =>
sub.labels.some(label => prLabels.includes(label)) sub.labels.some(label => prLabels.includes(label))
); );
if (subCategory) { if (subCategory) {
subCategory.notes.push(prNote); subCategory.notes.push(prNote);
} else { } else {
category.notes.push(prNote);
}
}
else{
category.notes.push(prNote); category.notes.push(prNote);
} }
}
else{
category.notes.push(prNote);
}
}
} }
} }