From 4d9735e85b5686d5de7f9156586330824e8bbbb2 Mon Sep 17 00:00:00 2001 From: Adwait Kumar Singh Date: Wed, 17 Jun 2026 12:53:34 -0700 Subject: [PATCH] Skip auto-format for dependabot PRs --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3d2f138879..d0f687f179 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,10 @@ jobs: format: runs-on: ubuntu-latest name: Auto-format - if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository + if: > + github.event_name == 'pull_request' + && github.event.pull_request.head.repo.full_name == github.repository + && github.actor != 'dependabot[bot]' steps: - uses: actions/checkout@v6 with: