add "Validate Docker Compose" to job names ignored in CI Jobs section
All checks were successful
CI / build (push) Successful in 9s

This commit is contained in:
Space-Banane
2026-02-22 20:28:03 +01:00
parent 59dace529d
commit aefa1129cd

View File

@@ -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<string, NodeJS.Timeout>();