From 344cb76332ac79cf1e4093c5d69d33a4b5a37340 Mon Sep 17 00:00:00 2001 From: Mitchel Sellers Date: Mon, 6 Jul 2026 23:21:16 -0500 Subject: [PATCH] Prevent builds from running on dependabot updates 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 3697a2f..5569a22 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: ubuntu-latest name: Validate Build env: