type Bitbucket = {
username: string;
password: string;
};
/**
* Get a commit application property
* Retrieve an application property value stored against a commit.
*/
export async function main(
auth: Bitbucket,
workspace: string,
repo_slug: string,
commit: string,
app_key: string,
property_name: string
) {
const url = new URL(
`https://api.bitbucket.org/2.0/repositories/${workspace}/${repo_slug}/commit/${commit}/properties/${app_key}/${property_name}`
);
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 339 days ago
type Bitbucket = {
username: string;
password: string;
};
/**
* Get a commit application property
* Retrieve an [application property](/cloud/bitbucket/application-properties/) value stored against a commit.
*/
export async function main(
auth: Bitbucket,
workspace: string,
repo_slug: string,
commit: string,
app_key: string,
property_name: string
) {
const url = new URL(
`https://api.bitbucket.org/2.0/repositories/${workspace}/${repo_slug}/commit/${commit}/properties/${app_key}/${property_name}`
);
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 394 days ago