Post Deploy #355
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Post Deploy | |
on: | |
workflow_run: | |
workflows: [Deploy] | |
types: [completed] | |
branches: | |
- 'master' | |
- 'val' | |
- 'prod' | |
jobs: | |
notify_on_failure: | |
# Sends alert to macpro-mdct-<product name>-alerts channel in CMS slack when any integration environment fails to deploy or run tests | |
runs-on: ubuntu-latest | |
if: ${{ github.event.workflow_run.conclusion == 'failure' && (github.event.workflow_run.head_branch == 'master' || github.event.workflow_run.head_branch == 'val' || github.event.workflow_run.head_branch == 'prod') }} | |
steps: | |
- name: Slack Notification | |
uses: rtCamp/action-slack-notify@v2 | |
env: | |
SLACK_TITLE: ":boom: The latest ${{ github.repository }} build on branch '${{ github.event.workflow_run.head_branch }}' has failed" | |
SLACK_MESSAGE: "${{ github.event.workflow_run.html_url }}" | |
MSG_MINIMAL: true | |
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | |
# Sends a slack message to the mdct-prod-releases channel in CMS slack | |
notify_on_prod_release: | |
runs-on: ubuntu-latest | |
if: ${{ github.event.workflow_run.conclusion == 'success' && (github.event.workflow_run.head_branch == 'prod') }} | |
steps: | |
- name: Slack Notification | |
uses: rtCamp/action-slack-notify@v2 | |
env: | |
SLACK_TITLE: ":rocket: ${{ github.repository }} has successfully released to production." | |
MSG_MINIMAL: true | |
SLACK_WEBHOOK: ${{ secrets.PROD_RELEASE_SLACK_WEBHOOK }} |