From 9fe2f399c0a98f77328a85a64b12ec00e759690f Mon Sep 17 00:00:00 2001 From: Joey Perrott Date: Thu, 19 Oct 2023 19:38:10 +0000 Subject: [PATCH] ci: fix environment variables (#27966) Provide environment variables for deploying docs site (cherry picked from commit 21a0c6acab579f3e10339ac672a408b672717ccc) --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d0f45954e425..5c81d0080f08 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -292,6 +292,9 @@ jobs: run: yarn ci-push-deploy-docs-app - uses: ./.github/actions/slack if: ${{ failure() && github.event_name == 'push' }} + env: + CIRCLE_BRANCH: ${{ github.ref_name }} + CIRCLE_SHA1: ${{ github.sha }} with: JOB_NAME: 'Docs site deployment' SLACK_BOT_TOKEN: ${{ secrets.ANGULAR_ROBOT_SLACK_TOKEN }}