in frontend/app/getbuilds.ts [65:73]
function getGLPublishingJob(
deploymentInfo: DeployedImageInfo
): string | undefined {
if (deploymentInfo.labels.hasOwnProperty("github-publishing-job")) {
return deploymentInfo.labels["github-publishing-job"];
} else {
return undefined;
}
}