From 46d2550eda2a2f15db02bbcab13cb98f392ebdea Mon Sep 17 00:00:00 2001 From: Kyle Carberry Date: Sun, 30 Jan 2022 21:04:57 -0600 Subject: [PATCH] ci: Remove code coverage step for Dependabot (#107) --- .github/workflows/coder.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/coder.yaml b/.github/workflows/coder.yaml index 23bde4d0fc..4fdf90d413 100644 --- a/.github/workflows/coder.yaml +++ b/.github/workflows/coder.yaml @@ -168,6 +168,7 @@ jobs: -count=1 -race -parallel=1 - uses: codecov/codecov-action@v2 + if: github.actor != 'dependabot[bot]' with: token: ${{ secrets.CODECOV_TOKEN }} files: ./gotests.coverage @@ -200,6 +201,7 @@ jobs: - run: yarn test:coverage - uses: codecov/codecov-action@v2 + if: github.actor != 'dependabot[bot]' with: token: ${{ secrets.CODECOV_TOKEN }} files: ./coverage/lcov.info