diff --git a/.github/workflows/changelog-pr.yaml b/.github/workflows/changelog-pr.yaml index b1f6679..f4fdedc 100644 --- a/.github/workflows/changelog-pr.yaml +++ b/.github/workflows/changelog-pr.yaml @@ -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;