Files
xiaoxia-saas/scripts/ci/chatops/__init__.py
T
xiaoxia a117158168
CI/CD Pipeline / Validate Code Quality And Tests (push) Failing after 3m15s
CI Build & Deploy Pipeline / Staging E2E Tests (push) Has been cancelled
CI Build & Deploy Pipeline / Staging API Integration Tests (push) Has been cancelled
CI Build & Deploy Pipeline / Production Browser E2E (push) Failing after 1436h43m52s
CI Build & Deploy Pipeline / Deploy Production (push) Failing after 1436h43m53s
CI Build & Deploy Pipeline / Build Production Worker Image (push) Failing after 1436h43m54s
CI Build & Deploy Pipeline / Build Production Web Image (push) Failing after 1436h43m55s
CI Build & Deploy Pipeline / Build Production API Image (push) Failing after 1436h43m55s
CI/CD Pipeline / Check if frontend-only change (push) Failing after 1436h47m2s
CI Build & Deploy Pipeline / Build Staging API Image (push) Has been skipped
CI Build & Deploy Pipeline / Build Staging Web Image (push) Has been skipped
CI Build & Deploy Pipeline / Build Staging Worker Image (push) Has been skipped
CI Build & Deploy Pipeline / Deploy Staging (Watchtower auto-deploy) (push) Has been skipped
CI/CD Pipeline / Unit Tests (push) Has been skipped
CI/CD Pipeline / Integration Tests (push) Has been skipped
CI/CD Pipeline / Frontend Lint (push) Has been skipped
feat(ci): P2-2 ChatOps集成 - 飞书机器人对接Gitea Actions (#533)
Co-authored-by: xiaoxia <dev@xiaoxiajianji.com>
Co-committed-by: xiaoxia <dev@xiaoxiajianji.com>
2026-07-18 18:42:36 +08:00

20 lines
498 B
Python
Executable File
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
"""CI ChatOps 工具包 - 飞书机器人对接 Gitea Actions
模块:
config - 配置管理(环境变量)
gitea_client - Gitea API 客户端封装
feishu_notify - 飞书通知(失败/恢复/E2E摘要)
ci_query - CI 状态查询
ci_trigger - CI 重跑触发
webhook_server - Gitea webhook 接收服务(FastAPI
"""
__all__ = [
"config",
"gitea_client",
"feishu_notify",
"ci_query",
"ci_trigger",
"webhook_server",
]