type Github = {
token: string;
};
/**
* Update a webhook configuration for a repository
* Updates the webhook configuration for a repository. To update more information about the webhook, including the `active` state and `events`, use "Update a repository webhook."
Access tokens must have the `write:repo_hook` or `repo` scope, and GitHub Apps must have the `repository_hooks:write` permission.
*/
export async function main(
auth: Github,
owner: string,
repo: string,
hook_id: string,
body: {
content_type?: string;
insecure_ssl?: string | number;
secret?: string;
url?: string;
}
) {
const url = new URL(
`https://api.github.com/repos/${owner}/${repo}/hooks/${hook_id}/config`
);
const response = await fetch(url, {
method: "PATCH",
headers: {
"Content-Type": "application/json",
Authorization: "Bearer " + auth.token,
},
body: JSON.stringify(body),
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 367 days ago
type Github = {
token: string;
};
/**
* Update a webhook configuration for a repository
* Updates the webhook configuration for a repository. To update more information about the webhook, including the `active` state and `events`, use "Update a repository webhook."
Access tokens must have the `write:repo_hook` or `repo` scope, and GitHub Apps must have the `repository_hooks:write` permission.
*/
export async function main(
auth: Github,
owner: string,
repo: string,
hook_id: string,
body: {
content_type?: string;
insecure_ssl?: string | number;
secret?: string;
url?: string;
}
) {
const url = new URL(
`https://api.github.com/repos/${owner}/${repo}/hooks/${hook_id}/config`
);
const response = await fetch(url, {
method: "PATCH",
headers: {
"Content-Type": "application/json",
Authorization: "Bearer " + auth.token,
},
body: JSON.stringify(body),
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 872 days ago
type Github = {
token: string;
};
/**
* Update a webhook configuration for a repository
* Updates the webhook configuration for a repository. To update more information about the webhook, including the `active` state and `events`, use "[Update a repository webhook](/rest/reference/orgs#update-a-repository-webhook)."
Access tokens must have the `write:repo_hook` or `repo` scope, and GitHub Apps must have the `repository_hooks:write` permission.
*/
export async function main(
auth: Github,
owner: string,
repo: string,
hook_id: string,
body: {
content_type?: string;
insecure_ssl?: string | number;
secret?: string;
url?: string;
}
) {
const url = new URL(
`https://api.github.com/repos/${owner}/${repo}/hooks/${hook_id}/config`
);
const response = await fetch(url, {
method: "PATCH",
headers: {
"Content-Type": "application/json",
Authorization: "Bearer " + auth.token,
},
body: JSON.stringify(body),
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 927 days ago