From b44e92f143ca65c3bee575edcd928183ff1bbf7b Mon Sep 17 00:00:00 2001 From: Piotr Galar Date: Mon, 21 Apr 2025 11:50:17 +0200 Subject: [PATCH] fix: add missing import to the fix script --- scripts/src/actions/fix-yaml-config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/src/actions/fix-yaml-config.ts b/scripts/src/actions/fix-yaml-config.ts index 469efdf..5b11e9e 100644 --- a/scripts/src/actions/fix-yaml-config.ts +++ b/scripts/src/actions/fix-yaml-config.ts @@ -1,4 +1,5 @@ import 'reflect-metadata' +import {Permission} from '../resources/repository-collaborator.js' import {Repository} from '../resources/repository.js' import {runFormat} from './shared/format.js' import {runAddCollaboratorToAllRepos} from './shared/add-collaborator-to-all-repos.js'