This is an automated email from the ASF dual-hosted git repository.
jscheffl pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 2ed27393f6f Fix wrong path pattern after moving prek check to chart
folder (#57311)
2ed27393f6f is described below
commit 2ed27393f6f51c6f22d58a01ca24c8cac10da853
Author: Jens Scheffler <[email protected]>
AuthorDate: Sun Oct 26 19:39:11 2025 +0100
Fix wrong path pattern after moving prek check to chart folder (#57311)
---
chart/.pre-commit-config.yaml | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/chart/.pre-commit-config.yaml b/chart/.pre-commit-config.yaml
index 1fdc19b57e6..e1ee9d95bd0 100644
--- a/chart/.pre-commit-config.yaml
+++ b/chart/.pre-commit-config.yaml
@@ -51,7 +51,10 @@ repos:
- --no-sort-keys
- --indent
- "4"
- files: ^chart/values\.schema\.json$|^chart/values_schema\.schema\.json$
+ files:
+ (?x)
+ ^values\.schema\.json$|
+ ^values_schema\.schema\.json$
pass_filenames: true
- repo: local
hooks: