From e68252f84b2be330957382ca7d509ae185efc127 Mon Sep 17 00:00:00 2001 From: Piotr Galar Date: Mon, 21 Apr 2025 11:42:11 +0200 Subject: [PATCH] feat: add web3-bot to all repos --- scripts/src/actions/fix-yaml-config.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/src/actions/fix-yaml-config.ts b/scripts/src/actions/fix-yaml-config.ts index e250c2b..469efdf 100644 --- a/scripts/src/actions/fix-yaml-config.ts +++ b/scripts/src/actions/fix-yaml-config.ts @@ -1,6 +1,7 @@ import 'reflect-metadata' import {Repository} from '../resources/repository.js' import {runFormat} from './shared/format.js' +import {runAddCollaboratorToAllRepos} from './shared/add-collaborator-to-all-repos.js' import {runSetPropertyInAllRepos} from './shared/set-property-in-all-repos.js' import {runToggleArchivedRepos} from './shared/toggle-archived-repos.js' import {runDescribeAccessChanges} from './shared/describe-access-changes.js' @@ -22,6 +23,10 @@ async function run() { true, r => isPublic(r) ) + await runAddCollaboratorToAllRepos( + 'web3-bot', + Permission.Push + ) await runToggleArchivedRepos() const accessChangesDescription = await runDescribeAccessChanges() core.setOutput(