type Github = {
token: string;
};
/**
* Update a repository webhook
* Updates a webhook configured in a repository. If you previously had a `secret` set, you must provide the same `secret` or set a new `secret` or the secret will be removed. If you are only updating individual webhook `config` properties, use "Update a webhook configuration for a repository."
*/
export async function main(
auth: Github,
owner: string,
repo: string,
hook_id: string,
body: {
active?: boolean;
add_events?: string[];
config?: {
address?: string;
content_type?: string;
insecure_ssl?: string | number;
room?: string;
secret?: string;
url: string;
[k: string]: unknown;
};
events?: string[];
remove_events?: string[];
[k: string]: unknown;
}
) {
const url = new URL(
`https://api.github.com/repos/${owner}/${repo}/hooks/${hook_id}`
);
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 repository webhook
* Updates a webhook configured in a repository. If you previously had a `secret` set, you must provide the same `secret` or set a new `secret` or the secret will be removed. If you are only updating individual webhook `config` properties, use "Update a webhook configuration for a repository."
*/
export async function main(
auth: Github,
owner: string,
repo: string,
hook_id: string,
body: {
active?: boolean;
add_events?: string[];
config?: {
address?: string;
content_type?: string;
insecure_ssl?: string | number;
room?: string;
secret?: string;
url: string;
[k: string]: unknown;
};
events?: string[];
remove_events?: string[];
[k: string]: unknown;
}
) {
const url = new URL(
`https://api.github.com/repos/${owner}/${repo}/hooks/${hook_id}`
);
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 repository webhook
* Updates a webhook configured in a repository. If you previously had a `secret` set, you must provide the same `secret` or set a new `secret` or the secret will be removed. If you are only updating individual webhook `config` properties, use "[Update a webhook configuration for a repository](/rest/reference/repos#update-a-webhook-configuration-for-a-repository)."
*/
export async function main(
auth: Github,
owner: string,
repo: string,
hook_id: string,
body: {
active?: boolean;
add_events?: string[];
config?: {
address?: string;
content_type?: string;
insecure_ssl?: string | number;
room?: string;
secret?: string;
url: string;
[k: string]: unknown;
};
events?: string[];
remove_events?: string[];
[k: string]: unknown;
}
) {
const url = new URL(
`https://api.github.com/repos/${owner}/${repo}/hooks/${hook_id}`
);
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