Enables Git LFS for a repository. Access tokens must have the `admin:enterprise` scope.
1
type Github = {
2
token: string;
3
};
4
/**
5
* Enable Git LFS for a repository
6
* Enables Git LFS for a repository. Access tokens must have the `admin:enterprise` scope.
7
*/
8
export async function main(auth: Github, owner: string, repo: string) {
9
const url = new URL(`https://api.github.com/repos/${owner}/${repo}/lfs`);
10
11
const response = await fetch(url, {
12
method: "PUT",
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