From 91a9fd96b9181fc1657360a2a46fc64877d22dfa 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 a0b39b3fc3..71fa943519 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -70,3 +70,4 @@ jobs: if: matrix.node == 8 && github.repository == 'twbs/bootstrap' && github.event_name == 'push' env: COVERALLS_REPO_TOKEN: "${{ secrets.COVERALLS_REPO_TOKEN }}" + COVERALLS_GIT_BRANCH: "${{ github.ref }}"