Edits history of script submission #1505 for ' List the default reviewers in a project (bitbucket)'

  • nativets
    One script reply has been approved by the moderators
    Ap­pro­ved
    type Bitbucket = {
      username: string;
      password: string;
    };
    /**
     * List the default reviewers in a project
     * Return a list of all default reviewers for a project. This is a list of users that will be added as default
    reviewers to pull requests for any repository within the project.
     */
    export async function main(
      auth: Bitbucket,
      project_key: string,
      workspace: string
    ) {
      const url = new URL(
        `https://api.bitbucket.org/2.0/workspaces/${workspace}/projects/${project_key}/default-reviewers`
      );
    
      const response = await fetch(url, {
        method: "GET",
        headers: {
          Authorization: "Basic " + btoa(`${auth.username}:${auth.password}`),
        },
        body: undefined,
      });
      if (!response.ok) {
        const text = await response.text();
        throw new Error(`${response.status} ${text}`);
      }
      return await response.json();
    }
    

    Submitted by hugo697 375 days ago

  • nativets
    type Bitbucket = {
      username: string;
      password: string;
    };
    /**
     * List the default reviewers in a project
     * Return a list of all default reviewers for a project. This is a list of users that will be added as default
    reviewers to pull requests for any repository within the project.
     */
    export async function main(
      auth: Bitbucket,
      project_key: string,
      workspace: string
    ) {
      const url = new URL(
        `https://api.bitbucket.org/2.0/workspaces/${workspace}/projects/${project_key}/default-reviewers`
      );
    
      const response = await fetch(url, {
        method: "GET",
        headers: {
          Authorization: "Basic " + btoa(`${auth.username}:${auth.password}`),
        },
        body: undefined,
      });
      if (!response.ok) {
        const text = await response.text();
        throw new Error(`${response.status} ${text}`);
      }
      return await response.json();
    }
    

    Submitted by hugo697 935 days ago