From 47796adbac567e9afc634d1a89b0c2bb1c5c06e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=9D=A6?= Date: Fri, 11 Apr 2025 18:31:35 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=9B=B4=E6=96=B0=E6=8F=90=E4=BA=A4?= =?UTF-8?q?=E4=BF=A1=E6=81=AF=E6=A0=BC=E5=BC=8F=EF=BC=8C=E4=BD=BF=E7=94=A8?= =?UTF-8?q?=E8=A7=84=E8=8C=83=E5=8C=96=E5=89=8D=E7=BC=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- update_files.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update_files.py b/update_files.py index 2e2d76c..18fdad0 100644 --- a/update_files.py +++ b/update_files.py @@ -71,7 +71,7 @@ def main(): subprocess.run(["git", "remote", "set-url", "origin", new_repo_url], check=True) subprocess.run(["git", "checkout", "-B", "main"], check=True) subprocess.run(["git", "add", "."], check=True) - commit_message = "自动更新:从 list.yaml 下载最新文件" + commit_message = "feat: 自动更新从 list.yaml 下载最新文件" # 如果没有变更,则 git commit 会返回非零状态,可用 || true 处理 subprocess.run(["git", "commit", "-m", commit_message], check=False) subprocess.run(["git", "push", "origin", "main"], check=True)