in frontend/app/getbuilds.ts [55:63]
function getGHPublishingJob(
deploymentInfo: DeployedImageInfo
): string | undefined {
if (deploymentInfo.labels.hasOwnProperty("gitlab-publishing-job")) {
return deploymentInfo.labels["gitlab-publishing-job"];
} else {
return undefined;
}
}