From e41342b4c1be70ff8d6074f37ecc49dec632d80c Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Wed, 2 Oct 2019 22:05:15 +0300 Subject: [PATCH] coveralls: Add `COVERALLS_GIT_BRANCH` (#29458) Without this, coveralls didn't receive the branch info thus leading to failures when we switched branches. --- .github/workflows/test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6108fd1838..27739bf86c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -52,3 +52,4 @@ jobs: if: matrix.node == 10 && github.repository == 'twbs/bootstrap' && github.event_name == 'push' env: COVERALLS_REPO_TOKEN: "${{ secrets.COVERALLS_REPO_TOKEN }}" + COVERALLS_GIT_BRANCH: "${{ github.ref }}"