We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f77067f + e68252f commit d5b6be3Copy full SHA for d5b6be3
1 file changed
scripts/src/actions/fix-yaml-config.ts
@@ -1,6 +1,7 @@
1
import 'reflect-metadata'
2
import {Repository} from '../resources/repository.js'
3
import {runFormat} from './shared/format.js'
4
+import {runAddCollaboratorToAllRepos} from './shared/add-collaborator-to-all-repos.js'
5
import {runSetPropertyInAllRepos} from './shared/set-property-in-all-repos.js'
6
import {runToggleArchivedRepos} from './shared/toggle-archived-repos.js'
7
import {runDescribeAccessChanges} from './shared/describe-access-changes.js'
@@ -22,6 +23,10 @@ async function run() {
22
23
true,
24
r => isPublic(r)
25
)
26
+ await runAddCollaboratorToAllRepos(
27
+ 'web3-bot',
28
+ Permission.Push
29
+ )
30
await runToggleArchivedRepos()
31
const accessChangesDescription = await runDescribeAccessChanges()
32
core.setOutput(
0 commit comments