feat: Exclude maintainer labeled issues from stale issue closer (#14532)

This commit is contained in:
Gal Zahavi
2025-12-04 13:54:26 -08:00
committed by GitHub
parent ae8694b303
commit 0d5424fb79

View File

@@ -79,6 +79,11 @@ jobs:
continue;
}
// Skip if it has a maintainer label
if (issue.labels.some(label => label.name.toLowerCase().includes('maintainer'))) {
continue;
}
let isStale = updatedAt < tenDaysAgo;
// If apparently active, check if it's only bot activity