0
Get a repository webhook
One script reply has been approved by the moderators Verified

Returns a webhook configured in a repository. To get only the webhook config properties, see "Get a webhook configuration for a repository."

Created by hugo697 199 days ago Viewed 6117 times
0
Submitted by hugo697 Typescript (fetch-only)
Verified 199 days ago
1
type Github = {
2
  token: string;
3
};
4
/**
5
 * Get a repository webhook
6
 * Returns a webhook configured in a repository. To get only the webhook `config` properties, see "Get a webhook configuration for a repository."
7
 */
8
export async function main(
9
  auth: Github,
10
  owner: string,
11
  repo: string,
12
  hook_id: string
13
) {
14
  const url = new URL(
15
    `https://api.github.com/repos/${owner}/${repo}/hooks/${hook_id}`
16
  );
17

18
  const response = await fetch(url, {
19
    method: "GET",
20
    headers: {
21
      Authorization: "Bearer " + auth.token,
22
    },
23
    body: undefined,
24
  });
25
  if (!response.ok) {
26
    const text = await response.text();
27
    throw new Error(`${response.status} ${text}`);
28
  }
29
  return await response.json();
30
}
31