From 9a8a85864b99e4d5a44e8911362e62ec6190af70 Mon Sep 17 00:00:00 2001 From: Mark Hildebrand Date: Thu, 5 Feb 2026 16:35:49 -0800 Subject: [PATCH 1/2] Skip coverage for Dependabot. --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 285084a4e..aa2258568 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -265,6 +265,7 @@ jobs: needs: basics name: code coverage runs-on: ubuntu-latest + if: ${{ github.actor != 'dependabot[bot]' }} steps: - uses: actions/checkout@v4 with: From 9a25b1ce7862d01df23df6d9b2ba51edbedc587e Mon Sep 17 00:00:00 2001 From: Mark Hildebrand Date: Thu, 5 Feb 2026 17:03:17 -0800 Subject: [PATCH 2/2] Update .github/workflows/ci.yml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aa2258568..dae278a26 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -265,7 +265,7 @@ jobs: needs: basics name: code coverage runs-on: ubuntu-latest - if: ${{ github.actor != 'dependabot[bot]' }} + if: github.actor != 'dependabot[bot]' steps: - uses: actions/checkout@v4 with: