-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
27 lines (24 loc) · 1.05 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
const core = require('@actions/core')
const github = require('@actions/github')
async function action() {
const source = core.getInput('sourceOrganization', { required: true })
const target = core.getInput('targetOrganization', { required: true })
const privilegedToken = core.getInput('token', { required: true })
const octokit = new github.getOctokit(privilegedToken)
const apiResponse = await octokit.paginate(octokit.rest.orgs.listBlockedUsers, { org: source })
const blockedUsers = apiResponse.map(user => user.login)
blockedUsers.forEach(async function (user) {
const userIsAlreadyBlocked = await octokit.rest.orgs.checkBlockedUser({ org: target, username: user })
if(userIsAlreadyBlocked.status === 204) {
console.log(`Skipping ${user}, as they are already blocked.`)
} else {
console.log(`Attempting to block user: ${user}`)
const block = await octokit.rest.orgs.blockUser({
org: target,
username: user,
})
console.log(`Block response: ${JSON.stringify(block, null, 2)}`)
}
})
}
action()