From 0de98f813956ebcdd273d737d561a70e04145b16 Mon Sep 17 00:00:00 2001 From: xiaomage Date: Fri, 4 Sep 2026 19:21:11 +0800 Subject: [PATCH] fix(ci): use English headers in the upgrade matrix table --- .github/workflows/rustfs-upgrade-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rustfs-upgrade-test.yml b/.github/workflows/rustfs-upgrade-test.yml index 6d678bec0..d822b4990 100644 --- a/.github/workflows/rustfs-upgrade-test.yml +++ b/.github/workflows/rustfs-upgrade-test.yml @@ -265,13 +265,13 @@ jobs: # result. The dashboard renders this table directly. with open(matrix_file, 'w', encoding='utf-8') as out: out.write('## Upgrade Matrix\n\n') - out.write('| Topology | KMS Backend | 升级前版本 | 升级后版本 | 升级结果 |\n') + out.write('| Topology | KMS Backend | From Version | To Version | Result |\n') out.write('| --- | --- | --- | --- | --- |\n') for topo, backend, old_v, new_v, npass, nfail in topo_rows: result = 'PASS' if nfail == '0' else 'FAIL' out.write(f'| {topo} | {backend} | {old_v} | {new_v} | {result} (PASS={npass} FAIL={nfail}) |\n') if not topo_rows: - out.write('| - | - | - | - | 未执行(套件在升级前失败) |\n') + out.write('| - | - | - | - | NOT RUN (suite failed before upgrade) |\n') PY { echo "# RustFS upgrade compatibility report"