From aefa1129cddf1b2703d1b6012fd5c870404dec60 Mon Sep 17 00:00:00 2001 From: Space-Banane Date: Sun, 22 Feb 2026 20:28:03 +0100 Subject: [PATCH] add "Validate Docker Compose" to job names ignored in CI Jobs section --- src/web/gitJob.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/web/gitJob.ts b/src/web/gitJob.ts index 18b9bc3..27bed58 100644 --- a/src/web/gitJob.ts +++ b/src/web/gitJob.ts @@ -18,7 +18,7 @@ const configured_channel = CHANNELS.UPDATES; const EDIT_COOLDOWN_MS = 2000; /** Job names to ignore and not display in the CI Jobs section */ -const jobNameIgnore: string[] = ["changes"]; +const jobNameIgnore: string[] = ["changes", "Validate Docker Compose"]; /** In-memory map of messageId → pending setTimeout handle */ const pendingTimeouts = new Map();