From e4da341b0bef8e2673e19fe774c756f25c6a4413 Mon Sep 17 00:00:00 2001 From: Mitchel Sellers Date: Mon, 6 Jul 2026 23:23:10 -0500 Subject: [PATCH] Prevent builds from running on dependabot commits Added condition to skip builds triggered by dependabot. --- .github/workflows/ci-build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 3fd6816..389dd7b 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -9,6 +9,7 @@ on: jobs: build: + if: github.actor != 'dependabot[bot]' # Prevent any dependency updates runs-on: windows-latest name: Validate Build env: