fix(alerts): 收斂 Telegram 告警到 SRE 戰情室
Some checks failed
CD Pipeline / tests (push) Failing after 1m23s
CD Pipeline / build-and-deploy (push) Has been skipped
CD Pipeline / post-deploy-checks (push) Has been skipped
Code Review / ai-code-review (push) Successful in 15s

This commit is contained in:
Your Name
2026-06-12 11:03:07 +08:00
parent 46b4743fbc
commit ee2cc2bfc3
32 changed files with 165 additions and 113 deletions

View File

@@ -10,6 +10,7 @@ const path = require("path");
const root = path.resolve(__dirname, "../..");
const workflowDir = path.join(root, ".gitea", "workflows");
const violations = [];
const routeViolations = [];
for (const fileName of fs.readdirSync(workflowDir).sort()) {
if (!fileName.endsWith(".yml") && !fileName.endsWith(".yaml")) {
@@ -17,9 +18,29 @@ for (const fileName of fs.readdirSync(workflowDir).sort()) {
}
const filePath = path.join(workflowDir, fileName);
const lines = fs.readFileSync(filePath, "utf8").split(/\r?\n/);
const content = fs.readFileSync(filePath, "utf8");
const lines = content.split(/\r?\n/);
let block = null;
if (content.includes("TELEGRAM_ALERT_CHAT_ID")) {
routeViolations.push(`${filePath}: legacy TELEGRAM_ALERT_CHAT_ID is not allowed; use SRE_GROUP_CHAT_ID`);
}
if (content.includes("TELEGRAM_CHAT_ID")) {
routeViolations.push(`${filePath}: legacy TELEGRAM_CHAT_ID is not allowed for alert routing; use SRE_GROUP_CHAT_ID`);
}
let lineOffset = 0;
lines.forEach((line, index) => {
if (
line.includes("api.telegram.org/bot")
&& !content.slice(Math.max(0, lineOffset - 700), lineOffset + line.length + 1200).includes("SRE_GROUP_CHAT_ID")
) {
routeViolations.push(`${filePath}:${index + 1}: direct Telegram fallback must target SRE_GROUP_CHAT_ID`);
}
lineOffset += line.length + 1;
});
lines.forEach((line, index) => {
const indent = line.match(/^\s*/)[0].length;
const trimmed = line.trim();
@@ -51,4 +72,12 @@ if (violations.length > 0) {
process.exit(1);
}
console.log("no Gitea step env/with secrets");
if (routeViolations.length > 0) {
console.error("Gitea workflow Telegram route must converge on AwoooI SRE war room:");
for (const violation of routeViolations) {
console.error(` - ${violation}`);
}
process.exit(1);
}
console.log("no Gitea step env/with secrets or legacy Telegram routes");