Workflow Update

This commit is contained in:
Michel Roegl-Brunner 2025-03-24 13:35:24 +01:00
parent 1352952282
commit 520b53be24

View File

@ -136,6 +136,7 @@ jobs:
} }
} catch (error) { } catch (error) {
console.error(`Error fetching related issues: ${error}`); console.error(`Error fetching related issues: ${error}`);
prNote = `- ${pr.title} ([#${pr.number}](${pr.html_url}))`;
} }
} }
@ -154,11 +155,11 @@ jobs:
category.notes.push(prNote); category.notes.push(prNote);
} }
} else { } else {
if (!category.labels.includes("new script")) { if(!category.labels.includes("new script")) {
category.notes.push(prNote); category.notes.push(prNote);
} }
} }
}else if (category.labels.includes("new script")){ }else if(category.labels.includes("new script")){
category.notes.push(prNote); category.notes.push(prNote);
} }
} }