format some files

This commit is contained in:
PiquelChips
2025-07-24 19:45:43 +02:00
parent a0bbf7be23
commit 1f9ef473f1
2 changed files with 8 additions and 8 deletions

View File

@@ -443,8 +443,8 @@ export default async function handler(
for (const app of secureApps) {
// check for labels
if (app?.previewLabels != "") {
const previewLabels = app?.previewLabels?.split(",");
if (app?.previewLabels != "") {
const previewLabels = app?.previewLabels?.split(",");
let hasLabel: boolean = false;
const labels = githubBody?.pull_request?.labels;
for (const label of labels) {
@@ -454,8 +454,8 @@ export default async function handler(
}
}
if (hasLabel)
continue;
}
continue;
}
const previewLimit = app?.previewLimit || 0;
if (app?.previewDeployments?.length > previewLimit) {