Auto-commit local changes before build (2026-01-08 16:20:40)

This commit is contained in:
Ivo Oskamp 2026-01-08 16:20:40 +01:00
parent 63d4b0126b
commit bbfcfebfc2

View File

@ -1,12 +1,7 @@
# --- Synology DSM Updates (informational, excluded from reporting) ---
DSM_UPDATE_CANCELLED_PATTERNS = [
"Automatische update van DSM is geannuleerd",
"Automatic DSM update was cancelled",
]
from __future__ import annotations
import re
from typing import Dict, Tuple, List, Optional
@ -19,6 +14,11 @@ from ..models import MailMessage
# - Hyper Backup (Synology): task notifications from Hyper Backup
# - Account Protection (Synology): DSM Account Protection lockout notifications
DSM_UPDATE_CANCELLED_PATTERNS = [
"Automatische update van DSM is geannuleerd",
"Automatic DSM update was cancelled",
]
_BR_RE = re.compile(r"<\s*br\s*/?\s*>", re.I)
_TAG_RE = re.compile(r"<[^>]+>")
_WS_RE = re.compile(r"[\t\r\f\v ]+")