From e5122945fe1fdb4584ac367729182da38530dadb Mon Sep 17 00:00:00 2001 From: -LAN- Date: Tue, 9 Sep 2025 17:00:00 +0800 Subject: [PATCH] Fix: Use --fix flag instead of --fix-only in autofix workflow (#25425) --- .github/workflows/autofix.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/autofix.yml b/.github/workflows/autofix.yml index 82ba95444f..be6ce80dfc 100644 --- a/.github/workflows/autofix.yml +++ b/.github/workflows/autofix.yml @@ -20,7 +20,7 @@ jobs: cd api uv sync --dev # Fix lint errors - uv run ruff check --fix-only . + uv run ruff check --fix . # Format code uv run ruff format . - name: ast-grep