From b9f27795c07b3d469bad08f5e16d0c36245db0df Mon Sep 17 00:00:00 2001 From: Ian Fijolek Date: Fri, 28 Feb 2025 12:53:29 -0800 Subject: [PATCH] Add hook to check for signoff in commit messages Since this is checked on PR, it could also be checked at commit so users can avoid making commits to the tree without expected documentation. Signed-off-by: Ian Fijolek --- .pre-commit-config.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 61ce333..d38e936 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,3 +1,4 @@ +default_install_hook_types: [pre-commit, commit-msg] repos: - repo: https://github.com/astral-sh/ruff-pre-commit rev: v0.9.6 @@ -26,3 +27,8 @@ repos: rev: v2.2.5 hooks: - id: codespell + + - repo: https://github.com/gklein/check_signoff + rev: v1.0.5 + hooks: + - id: check-signoff