From 5ffa98f65022fecab849d33305a9e449d3147ff9 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 2 Sep 2026 20:00:58 +0000 Subject: [PATCH] fix: name pre-commit template .pre-commit-config.yaml pre-commit only discovers `.pre-commit-config.yaml` by default. The synced template was called `.pre-commit-config.yml`, so target repos without their own config (keras-complex) failed the "Pre-commit Checks" workflow with "`.pre-commit-config.yaml is not a file`". Renaming the template fixes the sync output; the labeler config already referenced the `.yaml` name. Co-Authored-By: Claude Fable 5.1 Claude-Session: https://claude.ai/code/session_01GqGvtFsaGKvFTGMNcJpSek --- .../python/{.pre-commit-config.yml => .pre-commit-config.yaml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename configs/python/{.pre-commit-config.yml => .pre-commit-config.yaml} (100%) diff --git a/configs/python/.pre-commit-config.yml b/configs/python/.pre-commit-config.yaml similarity index 100% rename from configs/python/.pre-commit-config.yml rename to configs/python/.pre-commit-config.yaml