From 2a44432f17bcf159b9e593f9b1b78003d3d2ca01 Mon Sep 17 00:00:00 2001 From: homelab-add-pr-check Date: Thu, 23 Jul 2026 23:45:44 +0000 Subject: [PATCH] ci: add kustomize-validate-action as a PR check MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This repo had no PR checks at all — a malformed kustomization.yaml edit (e.g. the vpa-rollout batch, homelab#455) could merge clean and only surface once ArgoCD tried to sync it. Reuses the existing dvystrcil/kustomize-validate-action rather than a new one; ubuntu-latest since the action needs no cluster access. Automated by bin/add-pr-check.py (homelab#455). --- .github/workflows/validate.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .github/workflows/validate.yaml diff --git a/.github/workflows/validate.yaml b/.github/workflows/validate.yaml new file mode 100644 index 00000000..8dab3059 --- /dev/null +++ b/.github/workflows/validate.yaml @@ -0,0 +1,8 @@ +name: validate +on: [pull_request] +jobs: + manifests: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v5 + - uses: dvystrcil/kustomize-validate-action@v1