diff --git a/src/permissions/run.ts b/src/permissions/run.ts index 0ca8d59..f68b8e6 100644 --- a/src/permissions/run.ts +++ b/src/permissions/run.ts @@ -452,6 +452,11 @@ async function main() { // be in our config in case it becomes un-archived if (!octoRepo.archived) { reposToCheck.push(repo); + } else { + // Even archived repos need to have the plugins run on them + for (const plugin of plugins) { + await plugin.handleRepo?.(repo, config.teams, builder); + } } }