From 473b0ef0fcc2eede6ce6602ff385e8b96acc1c4e Mon Sep 17 00:00:00 2001 From: pooneyy <85266337+pooneyy@users.noreply.github.com> Date: Wed, 12 Nov 2025 01:56:43 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix(ci):=20fix=20git=20commit=20?= =?UTF-8?q?command=20syntax?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - add missing -m flag to git commit command for proper message formatting --- .github/workflows/notice-board.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/notice-board.yml b/.github/workflows/notice-board.yml index 28a508dac..4ebe43cc4 100644 --- a/.github/workflows/notice-board.yml +++ b/.github/workflows/notice-board.yml @@ -45,6 +45,6 @@ jobs: if git diff --cached --quiet; then echo "没有文件变更,跳过提交" else - git commit --quiet "📝 docs(readme): update notice board" + git commit --quiet -m "📝 docs(readme): update notice board" fi git push