From 3d2ad67600ebac8ed217d2d682a44c9fb68c3814 Mon Sep 17 00:00:00 2001 From: Matthew McKinnon Date: Sat, 27 Sep 2025 13:59:42 +1000 Subject: [PATCH] chore: exclude terraform.auto.tfvars from format check --- .github/workflows/infra-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/infra-build.yml b/.github/workflows/infra-build.yml index 66d5629..26a4298 100644 --- a/.github/workflows/infra-build.yml +++ b/.github/workflows/infra-build.yml @@ -40,7 +40,7 @@ jobs: run: tofu init - name: Opentofu Format Check - run: tofu fmt -check -recursive + run: tofu fmt -check -recursive -exclude terraform.auto.tfvars - name: Opentofu Validate run: tofu validate