From cd514b7a301d25b3e81f5619cf0684f9b5d7bdf2 Mon Sep 17 00:00:00 2001 From: jordanstephens Date: Fri, 15 May 2026 09:42:19 -0700 Subject: [PATCH] skip coverage regression check for dependabot prs --- .github/workflows/go.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 4a60389a7..e15680879 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -94,7 +94,7 @@ jobs: working-directory: src - name: Check coverage regression - if: github.ref != 'refs/heads/main' && !startsWith(github.ref, 'refs/tags/v') + if: github.ref != 'refs/heads/main' && !startsWith(github.ref, 'refs/tags/v') && github.actor != 'dependabot[bot]' run: | if [ ! -f coverage-main/coverage.txt ]; then echo "No main coverage baseline found, skipping comparison"