From 8b7a7830ea1618cbe1ab593bfa3e71aa6ace836c Mon Sep 17 00:00:00 2001 From: Anton Gilgur Date: Tue, 31 Dec 2024 15:49:41 -0500 Subject: [PATCH] token is apparently needed for `main` and other "unprefixed" branches - c.f. https://docs.codecov.com/docs/codecov-tokens#tokenless-on-unprotected-branches --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 67af862..9f03a45 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,3 +33,5 @@ jobs: run: npm run test:coverage - name: Upload coverage report to Codecov uses: codecov/codecov-action@v5 + with: + token: ${{ secrets.CODECOV_TOKEN }}