feat(workflow): expand stale-exempt labels to include help wanted and Public Roadmap (#17459)

This commit is contained in:
Bryan Morgan
2026-01-24 16:39:15 -05:00
committed by GitHub
parent a76c2986c2
commit 05e73c4193
2 changed files with 10 additions and 4 deletions
@@ -79,8 +79,14 @@ jobs:
continue;
}
// Skip if it has a maintainer label
if (issue.labels.some(label => label.name.toLowerCase().includes('maintainer'))) {
// Skip if it has a maintainer, help wanted, or Public Roadmap label
const rawLabels = issue.labels.map((l) => l.name);
const lowercaseLabels = rawLabels.map((l) => l.toLowerCase());
if (
lowercaseLabels.some((l) => l.includes('maintainer')) ||
lowercaseLabels.includes('help wanted') ||
rawLabels.includes('🗓️ Public Roadmap')
) {
continue;
}