Edits history of script submission #1340 for ' Stop a pipeline (bitbucket)'

  • nativets
    One script reply has been approved by the moderators
    Ap­pro­ved
    type Bitbucket = {
      username: string;
      password: string;
    };
    /**
     * Stop a pipeline
     * Signal the stop of a pipeline and all of its steps that not have completed yet.
     */
    export async function main(
      auth: Bitbucket,
      workspace: string,
      repo_slug: string,
      pipeline_uuid: string
    ) {
      const url = new URL(
        `https://api.bitbucket.org/2.0/repositories/${workspace}/${repo_slug}/pipelines/${pipeline_uuid}/stopPipeline`
      );
    
      const response = await fetch(url, {
        method: "POST",
        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.text();
    }
    

    Submitted by hugo697 375 days ago

  • nativets
    type Bitbucket = {
      username: string;
      password: string;
    };
    /**
     * Stop a pipeline
     * Signal the stop of a pipeline and all of its steps that not have completed yet.
     */
    export async function main(
      auth: Bitbucket,
      workspace: string,
      repo_slug: string,
      pipeline_uuid: string
    ) {
      const url = new URL(
        `https://api.bitbucket.org/2.0/repositories/${workspace}/${repo_slug}/pipelines/${pipeline_uuid}/stopPipeline`
      );
    
      const response = await fetch(url, {
        method: "POST",
        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.text();
    }
    

    Submitted by hugo697 935 days ago