7e5e412f7f
Tests / lint (pull_request) Failing after 9s
Tests / test (pull_request) Failing after 28s
Auto Merge PRs (main) / Auto Merge on CI Green + Approved (main) (pull_request) Failing after 30s
CI/CD Pipeline / Validate Code Quality And Tests (pull_request) Successful in 1m53s
CI/CD Pipeline / Frontend Lint (pull_request) Successful in 2m29s
CI/CD Pipeline / Build Production Runtime Images (pull_request) Has been skipped
CI/CD Pipeline / Build & Push Staging (Watchtower auto-deploy) (pull_request) Has been skipped
CI/CD Pipeline / Staging E2E Tests (pull_request) Has been skipped
CI/CD Pipeline / Deploy Production (pull_request) Has been skipped
CI/CD Pipeline / Production Browser E2E (pull_request) Has been skipped
- 触发方式:pull_request事件(CI状态变更时) - 合并条件:2门禁全绿 + 至少1个APPROVED + 无冲突 + 非草稿 - 安全措施:幂等保护、合并失败留评论、只合main - 新增check_ci_status.py和check_pr_approval.py辅助脚本
45 lines
1.1 KiB
Python
45 lines
1.1 KiB
Python
#!/usr/bin/env python3
|
|
"""检查指定commit的CI status状态。
|
|
|
|
用法: python3 check_ci_status.py <token> <repo> <sha> <context>
|
|
返回: 打印状态 (success/failure/pending/error)
|
|
"""
|
|
|
|
import json
|
|
import sys
|
|
import urllib.error
|
|
import urllib.request
|
|
|
|
|
|
def main():
|
|
if len(sys.argv) != 5:
|
|
print("pending")
|
|
return
|
|
|
|
token = sys.argv[1]
|
|
repo = sys.argv[2]
|
|
sha = sys.argv[3]
|
|
target_context = sys.argv[4]
|
|
|
|
api_url = f"https://git.xiaoxiajianji.com/api/v1/repos/{repo}/commits/{sha}/statuses?per_page=100"
|
|
req = urllib.request.Request(api_url, headers={"Authorization": f"token {token}"})
|
|
|
|
try:
|
|
with urllib.request.urlopen(req, timeout=30) as resp:
|
|
statuses = json.loads(resp.read().decode())
|
|
except Exception:
|
|
print("pending")
|
|
return
|
|
|
|
# API返回按时间倒序,第一个就是最新的
|
|
for s in statuses:
|
|
if s.get("context") == target_context:
|
|
print(s.get("status", "pending"))
|
|
return
|
|
|
|
print("pending")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|