Delete a repository cache.
1
type Bitbucket = {
2
username: string;
3
password: string;
4
};
5
/**
6
* Delete a cache
7
* Delete a repository cache.
8
*/
9
export async function main(
10
auth: Bitbucket,
11
workspace: string,
12
repo_slug: string,
13
cache_uuid: string
14
) {
15
const url = new URL(
16
`https://api.bitbucket.org/2.0/repositories/${workspace}/${repo_slug}/pipelines-config/caches/${cache_uuid}`
17
);
18
19
const response = await fetch(url, {
20
method: "DELETE",
21
headers: {
22
Authorization: "Basic " + btoa(`${auth.username}:${auth.password}`),
23
},
24
body: undefined,
25
});
26
if (!response.ok) {
27
const text = await response.text();
28
throw new Error(`${response.status} ${text}`);
29
}
30
return await response.text();
31
32