From 734f543099f163d6b4dab0022d2618059e23d396 Mon Sep 17 00:00:00 2001 From: Ben Vincent Date: Mon, 2 Mar 2026 00:09:57 +1100 Subject: [PATCH] feat: add pre-commit workflow - enforce pre-commit is run for all pull-requests --- .woodpecker/pre-commit.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .woodpecker/pre-commit.yaml diff --git a/.woodpecker/pre-commit.yaml b/.woodpecker/pre-commit.yaml new file mode 100644 index 0000000..5ae8a6a --- /dev/null +++ b/.woodpecker/pre-commit.yaml @@ -0,0 +1,9 @@ +when: + - event: pull_request + +steps: + - name: pre-commit + image: git.unkin.net/unkin/almalinux9-base:latest + commands: + - dnf install uv kustomize kubeconform -y + - uvx pre-commit run --all-files