Skip to content

Commit

Permalink
Merge pull request #6256 from Expensify/tgolen-fix-deploy-message
Browse files Browse the repository at this point in the history
  • Loading branch information
roryabraham authored Nov 5, 2021
2 parents 8cca7fe + 300decb commit b770151
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/platformDeploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -410,6 +410,7 @@ jobs:
WEB: ${{ needs.web.result }}

- name: 'Announces the deploy in the #announce Slack room'
if: ${{ success() }}
uses: 8398a7/action-slack@v3
with:
status: custom
Expand All @@ -426,6 +427,7 @@ jobs:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }}

- name: 'Announces the deploy in the #deployer Slack room'
if: ${{ success() }}
uses: 8398a7/action-slack@v3
with:
status: custom
Expand All @@ -443,7 +445,7 @@ jobs:

- name: 'Announces a production deploy in the #expensify-open-source Slack room'
uses: 8398a7/action-slack@v3
if: ${{ fromJSON(env.SHOULD_DEPLOY_PRODUCTION) }}
if: ${{ success() && fromJSON(env.SHOULD_DEPLOY_PRODUCTION) }}
with:
status: custom
custom_payload: |
Expand Down

0 comments on commit b770151

Please sign in to comment.