0

Syncs repositories from an integrated org with git hub

by
Published Oct 17, 2025

Syncs repositories for an integrated organization with GitHub.

Script sentry Verified

The script

Submitted by hugo697 Bun
Verified 235 days ago
1
//native
2
/**
3
 * Syncs repositories from an integrated org with git hub
4
 * Syncs repositories for an integrated organization with GitHub.
5
 */
6
export async function main(auth: RT.Sentry, owner: string) {
7
	const url = new URL(
8
		`https://${auth.region}.sentry.io/api/0/organizations/${auth.organizationSlug}/prevent/owner/${owner}/repositories/sync/`
9
	)
10

11
	const response = await fetch(url, {
12
		method: 'POST',
13
		headers: {
14
			Authorization: 'Bearer ' + auth.token
15
		},
16
		body: undefined
17
	})
18
	if (!response.ok) {
19
		const text = await response.text()
20
		throw new Error(`${response.status} ${text}`)
21
	}
22
	return await response.json()
23
}
24