Edits history of script submission #2249 for ' Update an organization webhook (github)'

  • nativets
    One script reply has been approved by the moderators
    Ap­pro­ved
    type Github = {
      token: string;
    };
    /**
     * Update an organization webhook
     * Updates a webhook configured in an organization. When you update a webhook, the `secret` will be overwritten. 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 an organization."
     */
    export async function main(
      auth: Github,
      org: string,
      hook_id: string,
      body: {
        active?: boolean;
        config?: {
          content_type?: string;
          insecure_ssl?: string | number;
          secret?: string;
          url: string;
          [k: string]: unknown;
        };
        events?: string[];
        name?: string;
        [k: string]: unknown;
      }
    ) {
      const url = new URL(`https://api.github.com/orgs/${org}/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

  • nativets
    type Github = {
      token: string;
    };
    /**
     * Update an organization webhook
     * Updates a webhook configured in an organization. When you update a webhook, the `secret` will be overwritten. 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 an organization."
     */
    export async function main(
      auth: Github,
      org: string,
      hook_id: string,
      body: {
        active?: boolean;
        config?: {
          content_type?: string;
          insecure_ssl?: string | number;
          secret?: string;
          url: string;
          [k: string]: unknown;
        };
        events?: string[];
        name?: string;
        [k: string]: unknown;
      }
    ) {
      const url = new URL(`https://api.github.com/orgs/${org}/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

  • nativets
    type Github = {
      token: string;
    };
    /**
     * Update an organization webhook
     * Updates a webhook configured in an organization. When you update a webhook, the `secret` will be overwritten. 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 an organization](/rest/reference/orgs#update-a-webhook-configuration-for-an-organization)."
     */
    export async function main(
      auth: Github,
      org: string,
      hook_id: string,
      body: {
        active?: boolean;
        config?: {
          content_type?: string;
          insecure_ssl?: string | number;
          secret?: string;
          url: string;
          [k: string]: unknown;
        };
        events?: string[];
        name?: string;
        [k: string]: unknown;
      }
    ) {
      const url = new URL(`https://api.github.com/orgs/${org}/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