Skip to content

Slack

Slack #8

Workflow file for this run

name: Slack
on:
workflow_run:
workflows: [CI]
types: [completed]
branches: [main]
jobs:
on-failure:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'failure' }}
steps:
- name: Post to Slack
uses: slackapi/[email protected]
with:
channel-id: 'testing-github-actions-slack-bot'
slack-message: "A workflow run failed:\n\n*Repo:* ${{ github.event.repository.full_name }} (${{ github.event.repository.html_url }})\n*Workflow:* ${{ github.event.workflow.name }} (`${{ github.event.workflow.path }}`)\n*Branch:* `${{ github.event.workflow_run.head_branch }}` (`${{ github.event.workflow_run.head_commit.id }}`)\n*Run:* ${{ github.event.workflow_run.html_url }}\n*Conclusion:* ${{ github.event.workflow_run.conclusion }}"
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}