type Bitbucket = {
username: string;
password: string;
};
/**
* Get a variable for a repository
* Retrieve a repository level variable.
*/
export async function main(
auth: Bitbucket,
workspace: string,
repo_slug: string,
variable_uuid: string
) {
const url = new URL(
`https://api.bitbucket.org/2.0/repositories/${workspace}/${repo_slug}/pipelines_config/variables/${variable_uuid}`
);
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 470 days ago