type Github = {
token: string;
};
/**
* Update a webhook configuration for an organization
* Updates the webhook configuration for an organization. To update more information about the webhook, including the `active` state and `events`, use "Update an organization webhook ."
Access tokens must have the `admin:org_hook` scope, and GitHub Apps must have the `organization_hooks:write` permission.
*/
export async function main(
auth: Github,
org: string,
hook_id: string,
body: {
content_type?: string;
insecure_ssl?: string | number;
secret?: string;
url?: string;
[k: string]: unknown;
}
) {
const url = new URL(
`https://api.github.com/orgs/${org}/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 an organization
* Updates the webhook configuration for an organization. To update more information about the webhook, including the `active` state and `events`, use "Update an organization webhook ."
Access tokens must have the `admin:org_hook` scope, and GitHub Apps must have the `organization_hooks:write` permission.
*/
export async function main(
auth: Github,
org: string,
hook_id: string,
body: {
content_type?: string;
insecure_ssl?: string | number;
secret?: string;
url?: string;
[k: string]: unknown;
}
) {
const url = new URL(
`https://api.github.com/orgs/${org}/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 an organization
* Updates the webhook configuration for an organization. To update more information about the webhook, including the `active` state and `events`, use "[Update an organization webhook ](/rest/reference/orgs#update-an-organization-webhook)."
Access tokens must have the `admin:org_hook` scope, and GitHub Apps must have the `organization_hooks:write` permission.
*/
export async function main(
auth: Github,
org: string,
hook_id: string,
body: {
content_type?: string;
insecure_ssl?: string | number;
secret?: string;
url?: string;
[k: string]: unknown;
}
) {
const url = new URL(
`https://api.github.com/orgs/${org}/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