Slack Notifications #1730
This file contains hidden or 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: Slack Notifications | |
| on: | |
| workflow_run: | |
| workflows: | |
| - Build | |
| - Iris sync | |
| - Releasability status | |
| - macOS Nightly Build | |
| - sonar-release | |
| types: | |
| - completed | |
| permissions: | |
| contents: read | |
| id-token: write | |
| jobs: | |
| notify: | |
| if: > | |
| github.event.workflow_run.conclusion == 'failure' && | |
| ( | |
| github.event.workflow_run.name == 'sonar-release' || | |
| github.event.workflow_run.head_branch == 'master' || | |
| startsWith(github.event.workflow_run.head_branch, 'branch-') || | |
| startsWith(github.event.workflow_run.head_branch, 'dogfood-') | |
| ) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Vault Secrets | |
| id: secrets | |
| uses: SonarSource/vault-action-wrapper@v3 | |
| with: | |
| secrets: | | |
| development/kv/data/slack token | SLACK_TOKEN; | |
| - name: Send Slack Notification | |
| uses: rtCamp/action-slack-notify@e31e87e03dd19038e411e38ae27cbad084a90661 # v2.3.3 | |
| env: | |
| SLACK_TOKEN: ${{ fromJSON(steps.secrets.outputs.vault).SLACK_TOKEN }} | |
| SLACK_CHANNEL: ops-ci-experience | |
| SLACK_COLOR: danger | |
| SLACK_TITLE: Workflow Failed | |
| SLACK_MESSAGE: | | |
| Workflow failed in ${{ github.repository }} 🚨 | |
| Workflow: ${{ github.event.workflow_run.name }} | |
| Branch: ${{ github.event.workflow_run.head_branch }} | |
| ${{ github.event.workflow_run.html_url }} | |
| SLACK_USERNAME: BuildBot |