type Bitbucket = {
username: string;
password: string;
};
/**
* Delete a cache
* Delete a repository cache.
*/
export async function main(
auth: Bitbucket,
workspace: string,
repo_slug: string,
cache_uuid: string
) {
const url = new URL(
`https://api.bitbucket.org/2.0/repositories/${workspace}/${repo_slug}/pipelines-config/caches/${cache_uuid}`
);
const response = await fetch(url, {
method: "DELETE",
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 396 days ago