From e2caf8ca5a07dff9325f30def3701682661e1e65 Mon Sep 17 00:00:00 2001 From: andrew Date: Fri, 12 Mar 2021 17:55:34 -0700 Subject: [PATCH] Use NEW_DEPLOY_BLOCKERS instead of NEW_PULL_REQUESTS --- .github/workflows/deployBlocker.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deployBlocker.yml b/.github/workflows/deployBlocker.yml index a7cd57f453df..ff09218e0bba 100644 --- a/.github/workflows/deployBlocker.yml +++ b/.github/workflows/deployBlocker.yml @@ -19,14 +19,14 @@ jobs: if: ${{ github.event_name == 'issues' }} with: GITHUB_TOKEN: ${{ secrets.OS_BOTIFY_TOKEN }} - NEW_PULL_REQUESTS: ${{ github.event.issue.html_url }} + NEW_DEPLOY_BLOCKERS: ${{ github.event.issue.html_url }} - name: Update StagingDeployCash with issue uses: Expensify/Expensify.cash/.github/actions/createOrUpdateStagingDeploy@master if: ${{ github.event_name == 'pull_request' }} with: GITHUB_TOKEN: ${{ secrets.OS_BOTIFY_TOKEN }} - NEW_PULL_REQUESTS: ${{ github.event.pull_request.html_url }} + NEW_DEPLOY_BLOCKERS: ${{ github.event.pull_request.html_url }} # This Slack step is duplicated in all workflows, if you make a change to this step, make sure to update all # the other workflows with the same change