We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bc498a commit b762135Copy full SHA for b762135
.github/workflows/label-to-release-announcement.yml
@@ -52,7 +52,7 @@ jobs:
52
for (const item of items) {
53
const releaseLabels = (item.labels || [])
54
.map(l => (typeof l === "string" ? l : l.name)) // always get the name
55
- .filter(n => typeof n === "string" && n.startsWith("release/"));
+ .filter(n => typeof n === "string" && n.startsWith("release/") && n !== "release/no-notes");
56
if (releaseLabels.length === 0) continue;
57
58
core.info(`#${item.number}: ${releaseLabels.join(", ")}`);
0 commit comments