Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use NEW_DEPLOY_BLOCKERS instead of NEW_PULL_REQUESTS #1761

Merged
merged 1 commit into from
Mar 13, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/deployBlocker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down