From cac1c99c6cdd1e4894a35cc347bde2a6a07d10a4 Mon Sep 17 00:00:00 2001 From: "Yukihiro \"Matz\" Matsumoto" Date: Fri, 13 Feb 2026 10:23:05 +0900 Subject: [PATCH] pre-commit.yml: remove duplicate --color=always argument The prek-action already passes --color=always internally, so passing it again via extra-args causes a CLI error. Co-authored-by: Claude --- .github/workflows/pre-commit.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 4cae372d7..6a12bf405 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -15,6 +15,6 @@ jobs: uses: actions/checkout@v6 - uses: j178/prek-action@v1 with: - extra-args: --color=always --all-files + extra-args: --all-files - name: Run manual pre-commit hooks run: prek run --color=always --all-files --hook-stage manual