From 93954dcd9a0bde39620b9012b8395460c9151caa Mon Sep 17 00:00:00 2001 From: Totto16 Date: Sun, 13 Oct 2024 22:55:49 +0200 Subject: [PATCH] Meta: Replace deprecated pre-commit stage name Also set minimum_pre_commit_version to 3.2.0 as this stage name is supported since then --- .pre-commit-config.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 2cb72cf9e17..383d58bc094 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,10 +1,11 @@ +minimum_pre_commit_version: 3.2.0 repos: - repo: local hooks: - id: meta-lint-ci name: Running Meta/lint-ci.sh to ensure changes will pass linting on CI entry: bash Meta/lint-ci.sh - stages: [ commit ] + stages: [ pre-commit ] language: system - id: meta-lint-commit